* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, #1e0a5c 0%, #0f051d 50%, #000000 100%);
    z-index: -2;
}

.aurora-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 198, 255, 0.3) 0%, transparent 50%);
    animation: aurora 20s ease-in-out infinite alternate;
}

.top-disclaimer {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff3838, #ff6b6b);
    color: white;
    z-index: 1001;
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(255, 56, 56, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
}

.disclaimer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
}

.disclaimer-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.disclaimer-text {
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 1px;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 56, 56, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 56, 56, 0.6);
    }
}

.bottom-disclaimer {
    background: linear-gradient(135deg, #ff3838, #ff6b6b, #ff4757);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.disclaimer-banner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.disclaimer-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.disclaimer-header h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.disclaimer-header .disclaimer-icon {
    font-size: 2rem;
    animation: flash 2s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.disclaimer-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.disclaimer-body p {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.disclaimer-body p:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.disclaimer-text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.disclaimer-text-content p {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.disclaimer-text-content p:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.header {
    position: fixed;
    top: 60px;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    font-size: 2rem;
    opacity: 0.8;
}

.title-brand {
    display: block;
    font-size: 5rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.floating-cards {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card:nth-child(2) {
    top: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

.card:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.card:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

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

.game-section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-showcase {
    display: flex;
    justify-content: center;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    padding: 3rem;
    max-width: 800px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.game-image {
    position: relative;
}

.game-preview {
    background: linear-gradient(135deg, #2c1810, #1a0f08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #ff6b6b;
}

.game-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 107, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.wolf-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.game-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.game-effects {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.effect {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.effect:nth-child(2) {
    animation-delay: 0.5s;
}

.effect:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.game-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.game-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    font-size: 1rem;
    opacity: 0.8;
}

.btn-game {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.btn-game:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.about-section {
    padding: 8rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-text {
    margin-bottom: 2rem;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    color: #4ecdc4;
    margin-bottom: 0.2rem;
}

.author-info p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.contact-section {
    padding: 8rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-text h4 {
    color: #4ecdc4;
    margin-bottom: 0.3rem;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    color: #4ecdc4;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #4ecdc4;
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.9));
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links h4 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #4ecdc4;
    transform: translateX(5px);
}

.footer-social h4 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

@keyframes aurora {
    0% {
        filter: hue-rotate(0deg);
        transform: scale(1);
    }
    100% {
        filter: hue-rotate(90deg);
        transform: scale(1.1);
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.age-badge {
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
}

.age-restriction p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.copyright p {
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-brand {
        font-size: 4rem;
    }
    
    .game-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding-top: 150px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-brand {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-cards {
        height: 300px;
    }
    
    .card {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .game-card {
        padding: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-brand {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .game-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}
.privacy-main {
    padding-top: 200px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: titlePulse 3s ease-in-out infinite;
}

.privacy-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.last-updated {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 107, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.privacy-section:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 6s ease-in-out infinite;
}

.privacy-section h2 {
    font-size: 2.2rem;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 1;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.section-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.section-content li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    transition: all 0.3s ease;
    position: relative;
}

.section-content li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-left-color: #4ecdc4;
}

.section-content li strong {
    color: #ff6b6b;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-section {
    border: 2px solid rgba(255, 107, 107, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    color: #4ecdc4;
    min-width: 120px;
}

.footer-links .active {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 8px;
    padding: 0.3rem 0.8rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1200px) {
    .privacy-section {
        padding: 2.5rem;
    }
    
    .privacy-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .privacy-main {
        padding-top: 220px;
    }
    
    .privacy-title {
        font-size: 2.8rem;
    }
    
    .privacy-subtitle {
        font-size: 1.2rem;
    }
    
    .privacy-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-icon {
        font-size: 2.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.8rem;
    }
    
    .section-content p {
        font-size: 1rem;
    }
    
    .section-content li {
        padding: 0.8rem 1.2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 2.2rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
    }
    
    .section-icon {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}
.terms-main {
    padding-top: 200px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.terms-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.terms-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: titlePulse 3s ease-in-out infinite;
}

.terms-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.last-updated {
    display: inline-block;
    background: linear-gradient(135deg, rgba(69, 183, 209, 0.2), rgba(78, 205, 196, 0.2));
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(69, 183, 209, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 500;
    color: #45b7d1;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-section {
    background: linear-gradient(135deg, rgba(69, 183, 209, 0.1), rgba(78, 205, 196, 0.05));
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(69, 183, 209, 0.2);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(69, 183, 209, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.terms-section:hover {
    transform: translateY(-5px);
    border-color: rgba(69, 183, 209, 0.4);
    box-shadow: 0 20px 40px rgba(69, 183, 209, 0.1);
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(69, 183, 209, 0.3));
}

.terms-section h2 {
    font-size: 2.2rem;
    color: #45b7d1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(69, 183, 209, 0.3);
}

.section-content {
    position: relative;
    z-index: 1;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.section-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.section-content li {
    background: rgba(69, 183, 209, 0.05);
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    border-radius: 10px;
    border-left: 4px solid #45b7d1;
    transition: all 0.3s ease;
    position: relative;
}

.section-content li:hover {
    background: rgba(69, 183, 209, 0.1);
    transform: translateX(10px);
    border-left-color: #4ecdc4;
    box-shadow: 0 5px 15px rgba(69, 183, 209, 0.2);
}

.section-content li strong {
    color: #45b7d1;
    display: block;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(69, 183, 209, 0.3);
}

.contact-section {
    border: 2px solid rgba(69, 183, 209, 0.3);
    background: linear-gradient(135deg, rgba(69, 183, 209, 0.1), rgba(78, 205, 196, 0.1));
}

.contact-info {
    background: rgba(69, 183, 209, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border: 1px solid rgba(69, 183, 209, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(69, 183, 209, 0.1);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: rgba(69, 183, 209, 0.05);
    padding-left: 1rem;
    border-radius: 8px;
}

.contact-item strong {
    color: #45b7d1;
    min-width: 160px;
    text-shadow: 0 0 10px rgba(69, 183, 209, 0.3);
}

.footer-links .active {
    color: #45b7d1;
    background: rgba(69, 183, 209, 0.2);
    border-radius: 8px;
    padding: 0.3rem 0.8rem;
    text-shadow: 0 0 10px rgba(69, 183, 209, 0.5);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(69, 183, 209, 0.3));
    }
    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 30px rgba(69, 183, 209, 0.5));
    }
}

.terms-section:nth-child(odd) {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08), rgba(69, 183, 209, 0.05));
    border-color: rgba(78, 205, 196, 0.2);
}

.terms-section:nth-child(odd):hover {
    border-color: rgba(78, 205, 196, 0.4);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.1);
}

.terms-section:nth-child(odd) .section-content li {
    border-left-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.05);
}

.terms-section:nth-child(odd) .section-content li:hover {
    background: rgba(78, 205, 196, 0.1);
    border-left-color: #45b7d1;
}

.terms-section:nth-child(odd) h2 {
    color: #4ecdc4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.terms-section:nth-child(odd) .section-content li strong {
    color: #4ecdc4;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
}

@media (max-width: 1200px) {
    .terms-section {
        padding: 2.5rem;
    }
    
    .terms-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .terms-main {
        padding-top: 220px;
    }
    
    .terms-title {
        font-size: 2.8rem;
    }
    
    .terms-subtitle {
        font-size: 1.2rem;
    }
    
    .terms-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-icon {
        font-size: 2.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.8rem;
    }
    
    .section-content p {
        font-size: 1rem;
    }
    
    .section-content li {
        padding: 0.8rem 1.2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-item strong {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .terms-title {
        font-size: 2.2rem;
    }
    
    .terms-section {
        padding: 1.5rem;
    }
    
    .section-icon {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .last-updated {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
.game-main {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.game-header {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
}

.game-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 107, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}



.game-title-section {
    flex: 1;
}

.game-title {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: titlePulse 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

.game-description {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.game-controls {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.fullscreen-btn,
.home-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.fullscreen-btn {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    color: white;
}

.fullscreen-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

.home-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
}

.home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.game-container {
    flex: 1;
    position: relative;
    background: #000;
    min-height: calc(100vh - 200px);
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 200px);
}

#gameFrame {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 200px);
    border: none;
    background: #000;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    max-width: 300px;
}

.loading-wolf {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.loading-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 3px;
    animation: loadingProgress 3s ease-in-out infinite;
}

@keyframes loadingProgress {
    0% {
        width: 0%;
        transform: translateX(-100%);
    }
    50% {
        width: 80%;
        transform: translateX(0);
    }
    100% {
        width: 100%;
        transform: translateX(0);
    }
}

.game-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    background: #000 !important;
}

.game-fullscreen #gameFrame {
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
}

.game-fullscreen .game-header,
.game-fullscreen .footer,
.game-fullscreen .top-disclaimer {
    display: none !important;
}

.fullscreen-active {
    overflow: hidden;
}

.footer-links .active {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 8px;
    padding: 0.3rem 0.8rem;
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(255, 107, 107, 0.5));
    }
}

@media (max-width: 1200px) {
    .game-info {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .game-controls {
        flex-direction: row;
        justify-content: center;
    }
    
    .game-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .game-main {
        padding-top: 140px;
    }
    
    .game-header {
        padding: 1.5rem 0;
    }
    
    .game-title {
        font-size: 2.5rem;
    }
    
    .game-description {
        font-size: 1.1rem;
    }
    
    .game-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fullscreen-btn,
    .home-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .game-container {
        min-height: calc(100vh - 240px);
    }
    
    .game-iframe-wrapper {
        min-height: calc(100vh - 240px);
    }
    
    #gameFrame {
        min-height: calc(100vh - 240px);
    }
    
    .loading-wolf {
        font-size: 4rem;
    }
    
    .loading-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2rem;
    }
    
    .game-description {
        font-size: 1rem;
    }
    
    .fullscreen-btn,
    .home-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .game-container {
        min-height: calc(100vh - 280px);
    }
    
    .game-iframe-wrapper {
        min-height: calc(100vh - 280px);
    }
    
    #gameFrame {
        min-height: calc(100vh - 280px);
    }
    
    .loading-wolf {
        font-size: 3rem;
    }
    
    .loading-text {
        font-size: 1.1rem;
    }
}

@media (orientation: landscape) and (max-height: 600px) {
    .game-header {
        padding: 1rem 0;
    }
    
    .game-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .game-description {
        font-size: 1rem;
    }
    
    .game-controls {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .fullscreen-btn,
    .home-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
}