.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(123, 47, 255, 0.12) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite reverse;
}

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

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    background: linear-gradient(135deg, #00D9FF 0%, #FF1493 50%, #7B2FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: gradient-shift 6s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-section .cta-button {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.table-of-contents {
    background: rgba(20, 27, 61, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}

.table-of-contents h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.table-of-contents li {
    margin: 0;
}

.table-of-contents a {
    display: block;
    padding: 1rem 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.table-of-contents a:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--primary);
    transform: translateX(8px);
}

.registration article {
    margin-bottom: 3rem;
}

.registration h3 {
    color: var(--primary);
    margin-top: 3rem;
}

.pokies .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cards-grid-3 .container > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cards-grid-2 .container > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mobile article {
    margin-bottom: 3rem;
}

.feature-icons ul {
    list-style: none;
    padding: 0;
}

.feature-icons li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.feature-icons li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.security article {
    margin-bottom: 3rem;
}

.highlight-boxes dl {
    background: rgba(20, 27, 61, 0.4);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-boxes dt {
    background: rgba(0, 217, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0 0.75rem;
}

.highlight-boxes dd {
    padding: 0.75rem 1.5rem;
}

.providers article {
    margin-bottom: 3rem;
}

.text-block article h3 {
    color: var(--primary);
}

.promotions {
    background: rgba(20, 27, 61, 0.3);
}

.promotions article {
    margin: 2rem 0;
}

.promotions h3 {
    color: var(--secondary);
}

.faq .accordion-item {
    background: rgba(20, 27, 61, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq .accordion-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq .accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    color: var(--primary);
    font-size: 1.25rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    position: relative;
}

.faq .accordion-header::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq .accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.faq .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq .accordion-item.active .accordion-body {
    max-height: 1000px;
    padding: 0 2rem 1.5rem;
}

.faq .accordion-body p {
    margin: 0;
    line-height: 1.8;
}

.cta-section {
    background: var(--gradient-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.15) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #FF1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: var(--text);
}

.cta-section .cta-button {
    padding: 1.5rem 3.5rem;
    font-size: 1.2rem;
    background: var(--gradient-secondary);
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.5);
}

.cta-section .cta-button:hover {
    box-shadow: 0 15px 50px rgba(255, 20, 147, 0.6);
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0 3rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .hero-section .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .table-of-contents ul {
        grid-template-columns: 1fr;
    }
    
    .cards-grid-3 .container > div,
    .cards-grid-2 .container > div {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-section p {
        font-size: 1.15rem;
    }
    
    .cta-section .cta-button {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
    }
}