/* Font Face */
@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Semibold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Black.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Light.ttf') format('truetype');
    font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(247, 201, 72, 0.3); }
    50% { box-shadow: 0 0 40px rgba(247, 201, 72, 0.6); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'TildaSans', sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    margin-left: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInDown 0.6s ease-out;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 45px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f7c948;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #f7c948;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/background.png') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.3) 0%, rgba(10, 10, 26, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #f7c948 0%, #ffdf80 50%, #f7c948 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f7c948 0%, #e5b83a 100%);
    color: #0a0a1a;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(247, 201, 72, 0.3);
    animation: fadeInUp 1s ease-out 0.9s both, glow 2s ease-in-out infinite 2s;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(247, 201, 72, 0.5);
}

/* Explore Section */
.explore-section {
    background: rgba(15, 15, 35, 0.95);
    padding: 100px 0;
    position: relative;
}

.explore-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f7c948, transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

/* Casino Card - Featured */
.casino-card {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.9) 0%, rgba(20, 20, 45, 0.95) 100%);
    border: 2px solid rgba(247, 201, 72, 0.3);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(247, 201, 72, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.casino-card.featured {
    border-color: rgba(247, 201, 72, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(247, 201, 72, 0.1);
}

.casino-card:hover {
    border-color: #f7c948;
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(247, 201, 72, 0.2);
}

.casino-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f7c948 0%, #e5b83a 100%);
    color: #0a0a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

.casino-logo {
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.casino-card:hover .casino-logo {
    transform: scale(1.05);
}

.casino-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.casino-info {
    flex: 1;
}

.casino-name {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.casino-name .name {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 1px;
}

.casino-name .tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.casino-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 400px;
}

.casino-rating {
    text-align: center;
    min-width: 120px;
}

.rating-score {
    font-size: 48px;
    font-weight: 900;
    color: #f7c948;
    display: block;
    line-height: 1;
    text-shadow: 0 0 30px rgba(247, 201, 72, 0.5);
}

.stars-img {
    width: 100px;
    height: auto;
    margin-top: 8px;
    animation: float 3s ease-in-out infinite;
}

.btn-play {
    background: linear-gradient(135deg, #f7c948 0%, #e5b83a 100%);
    color: #0a0a1a;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(247, 201, 72, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-play::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-play:hover::before {
    left: 100%;
}

.btn-play svg {
    transition: transform 0.3s ease;
}

.btn-play:hover svg {
    transform: translateX(5px);
}

.btn-play:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(247, 201, 72, 0.5);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.95) 0%, rgba(10, 10, 26, 1) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 201, 72, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 0 0 450px;
    animation: slideInLeft 1s ease-out;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.about-text {
    flex: 1;
    animation: slideInRight 1s ease-out;
}

.about-text h2 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #f7c948;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-text h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.3;
}

.about-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-text ul li {
    padding: 12px 16px;
    padding-left: 40px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-text ul li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    color: #f7c948;
    font-weight: bold;
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background: rgba(10, 10, 26, 0.98);
}

.content-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #f7c948;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.content-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.9;
    max-width: 900px;
}

.content-section ul,
.content-section ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.content-section li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.7) 0%, rgba(20, 20, 45, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f7c948, #ffdf80, #f7c948);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: rgba(247, 201, 72, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(247, 201, 72, 0.1);
}

.feature-card:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.1s both; }
.feature-card:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.2s both; }
.feature-card:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.3s both; }

.feature-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #f7c948;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #f7c948;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.feature-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.8;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.feature-card li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.feature-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f7c948;
    font-weight: bold;
}

/* Responsible Gaming Section */
.responsible-section {
    background: linear-gradient(135deg, rgba(247, 201, 72, 0.15) 0%, rgba(229, 184, 58, 0.1) 100%);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(247, 201, 72, 0.3);
    border-bottom: 1px solid rgba(247, 201, 72, 0.3);
}

.responsible-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #f7c948;
    margin-bottom: 16px;
}

.responsible-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(247, 201, 72, 0.15) 0%, rgba(229, 184, 58, 0.1) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(247, 201, 72, 0.2);
    border-bottom: 1px solid rgba(247, 201, 72, 0.2);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 24px;
    font-weight: 700;
    max-width: 500px;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 15px;
    width: 320px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'TildaSans', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #f7c948;
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    background: linear-gradient(135deg, #f7c948 0%, #e5b83a 100%);
    color: #0a0a1a;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'TildaSans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 201, 72, 0.3);
}

/* Partners Section */
.partners-section {
    background: rgba(15, 15, 35, 0.95);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(247, 201, 72, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.partners-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.partners-content img {
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) brightness(1.5);
    height: 35px;
    width: auto;
}

.partners-content img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #0a0a1a;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 201, 72, 0.5), transparent);
}

.footer-content {
    text-align: center;
}

.footer-info {
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out;
}

.footer-info .logo {
    display: inline-block;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.footer-info .logo:hover {
    transform: scale(1.05);
}

.footer-info .logo img {
    height: 50px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f7c948;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #f7c948;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-image {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text ul {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .casino-card {
        flex-wrap: wrap;
        padding: 30px;
    }
    
    .casino-info {
        flex: 1 1 100%;
        order: 2;
    }
    
    .casino-rating {
        order: 3;
    }
    
    .btn-play {
        order: 4;
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .hero-btn {
        padding: 14px 36px;
        font-size: 14px;
    }
    
    .nav {
        display: none;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text h3 {
        font-size: 18px;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        gap: 24px;
    }
    
    .casino-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 10px;
    }
    
    .casino-name .name {
        font-size: 20px;
    }
    
    .casino-description {
        max-width: 100%;
    }
    
    .rating-score {
        font-size: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .content-section h3 {
        font-size: 18px;
    }
    
    .about-text h3 {
        font-size: 26px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PAGE STYLES - Policy & Contact Pages
   ======================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.98) 0%, rgba(10, 10, 26, 1) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 201, 72, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f7c948 0%, #ffdf80 50%, #f7c948 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* Policy Content */
.policy-content {
    padding: 80px 0 100px;
}

.policy-content h2 {
    margin-top: 0;
}

.policy-content a {
    color: #f7c948;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    color: #ffdf80;
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: rgba(30, 30, 60, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(247, 201, 72, 0.1);
    color: #f7c948;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-table td {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* Contact Section */
.contact-section {
    padding: 80px 0 100px;
    background: rgba(10, 10, 26, 0.98);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: #f7c948;
    margin-bottom: 20px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.6) 0%, rgba(20, 20, 45, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: rgba(247, 201, 72, 0.4);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 201, 72, 0.1);
    border-radius: 12px;
    color: #f7c948;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.contact-note {
    padding: 24px;
    background: rgba(247, 201, 72, 0.1);
    border-left: 4px solid #f7c948;
    border-radius: 0 12px 12px 0;
}

.contact-note h4 {
    font-size: 16px;
    font-weight: 700;
    color: #f7c948;
    margin-bottom: 10px;
}

.contact-note p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

.contact-form {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.7) 0%, rgba(20, 20, 45, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'TildaSans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f7c948;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(247, 201, 72, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f7c948' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #f7c948;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.checkbox-group label a {
    color: #f7c948;
}

.contact-form .btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.contact-form .btn-submit svg {
    transition: transform 0.3s ease;
}

.contact-form .btn-submit:hover svg {
    transform: translateX(5px) translateY(-5px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.95) 0%, rgba(10, 10, 26, 1) 100%);
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #f7c948;
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.6) 0%, rgba(20, 20, 45, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(247, 201, 72, 0.3);
    transform: translateY(-5px);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4::before {
    content: '?';
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 201, 72, 0.15);
    color: #f7c948;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    padding-left: 38px;
}

/* Active nav link */
.nav-link.active {
    color: #f7c948;
}

/* Responsive for new pages */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .contact-form {
        padding: 30px 24px;
    }
    
    .cookie-table {
        font-size: 13px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 12px 14px;
    }
}
