/* Дизайн для Pokies free slots games - красно-золотая храмовая тема */
:root {
    --primary-red: #c41e3a;
    --secondary-red: #8b0000;
    --accent-gold: #ffd700;
    --accent-orange: #ff8c00;
    --accent-bronze: #cd7f32;
    --text-color: #ffffff;
    --light-text: #cccccc;
    --background-color: #2d1810;
    --section-bg: #3d2518;
    --dark-brown: #1a0d08;
    --header-gradient: linear-gradient(135deg, #c41e3a, #8b0000);
    --shadow-color: rgba(196, 30, 58, 0.4);
}

@keyframes gold-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse-red {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(196, 30, 58, 0.5),
                    0 0 40px rgba(255, 215, 0, 0.2),
                    0 4px 15px rgba(0, 0, 0, 0.4);
    }
    50% { 
        box-shadow: 0 0 30px rgba(196, 30, 58, 0.7),
                    0 0 60px rgba(255, 215, 0, 0.4),
                    0 4px 20px rgba(0, 0, 0, 0.5);
    }
}

@keyframes coin-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes slide-in {
    0% { 
        opacity: 0;
        transform: translateY(20px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.temple-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #2d1810 0%, #1a0d08 50%, #2d1810 100%);
}

.temple-background::before,
.temple-background::after {
    content: '🪙';
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
    animation: coin-float 8s ease-in-out infinite;
}

.temple-background::before {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.temple-background::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 40px;
    background: var(--header-gradient);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 
        0 15px 50px var(--shadow-color),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 215, 0, 0.15) 50%,
        transparent 70%
    );
    background-size: 200% 100%;
    animation: gold-shimmer 4s ease-in-out infinite;
}

.logo-container {
    margin-bottom: 20px;
    animation: slide-in 0.6s ease-out;
    position: relative;
    z-index: 1;
}

.logo {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-brown), var(--section-bg));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-red 3s ease-in-out infinite;
    border: 4px solid var(--accent-gold);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        inset 0 0 15px rgba(196, 30, 58, 0.3);
}

.app-icon {
    font-size: 4rem;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
}

h1 {
    color: #ffffff;
    font-size: 2.6rem;
    margin: 15px 0 10px 0;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 1;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.app-name {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

h2 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-red);
    border-bottom: 2px solid var(--accent-gold);
    display: block;
    animation: slide-in 0.6s ease-out;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.policy-section {
    background-color: var(--section-bg);
    padding: 32px;
    margin-bottom: 22px;
    border-radius: 15px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(196, 30, 58, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    border-left: 5px solid var(--primary-red);
    animation: slide-in 0.8s ease-out;
    position: relative;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary-red),
        var(--accent-gold),
        var(--primary-red)
    );
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.6),
        0 4px 15px rgba(196, 30, 58, 0.3),
        0 0 20px rgba(255, 215, 0, 0.15);
    border-left-width: 7px;
    border-color: rgba(255, 215, 0, 0.4);
}

.policy-section:hover::before {
    opacity: 1;
}

.policy-section.intro {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(255, 215, 0, 0.08));
    border-left-color: var(--accent-gold);
    border-left-width: 6px;
}

.policy-section.effective-date {
    background: linear-gradient(135deg, var(--dark-brown), var(--section-bg));
    border-left-color: var(--accent-gold);
    text-align: center;
    border-right: 4px solid var(--accent-gold);
}

.policy-section.contact {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(255, 215, 0, 0.1));
    text-align: center;
    border: 3px solid var(--primary-red);
}

p {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

ul li {
    margin-bottom: 12px;
    padding-left: 40px;
    position: relative;
    color: var(--text-color);
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

ul li:before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.3rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

strong {
    color: var(--accent-gold);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.email {
    color: var(--accent-gold);
    font-weight: 600;
    background-color: rgba(255, 215, 0, 0.15);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid var(--accent-gold);
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.5);
}

.contact-email {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(255, 215, 0, 0.15));
    border-radius: 12px;
    margin: 20px 0;
    border: 3px solid var(--primary-red);
    box-shadow: 
        0 6px 20px rgba(196, 30, 58, 0.4),
        0 0 30px rgba(255, 215, 0, 0.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 25px 0;
    border-top: 2px solid rgba(196, 30, 58, 0.3);
    color: var(--light-text);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header {
        padding: 40px 30px;
        border-radius: 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .app-name {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .policy-section {
        padding: 25px;
        margin-bottom: 18px;
        border-radius: 12px;
    }
    
    .logo {
        width: 85px;
        height: 85px;
    }
    
    .app-icon {
        font-size: 3.2rem;
    }
    
    p, ul li {
        font-size: 1rem;
    }
    
    .contact-email {
        font-size: 1.1em;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .app-name {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
    
    .policy-section {
        padding: 20px;
        border-radius: 10px;
    }
    
    .logo {
        width: 75px;
        height: 75px;
    }
    
    .app-icon {
        font-size: 2.8rem;
    }
    
    .contact-email {
        font-size: 1em;
        padding: 12px;
    }
}

