/* Font Face Declaration */
@font-face {
    font-family: 'Agency FB';
    src: url('AGENCYFB-BOLD.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: block;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* New Color Palette - Dark Blue & Cyan Theme (PUBG MOBILE Clippy) */
    --primary-blue: #1a1f3a;
    --dark-blue: #0a0e1f;
    --medium-blue: #2d3a5a;
    --light-blue: #3d4a7a;
    --accent-cyan: #00BFFF;
    --bright-cyan: #00FFFF;
    --metallic-blue: #4A90E2;
    --metallic-blue-dark: #2E5C8A;
    --metallic-blue-light: #6BB3FF;
    --accent-pink: #FF69B4;
    --accent-purple: #C080FF;
    --accent-yellow: #FFD700;
    --black: #000000;
    --text-white: #FFFFFF;
    --text-light: #E5E7EB;
    --border-color: #4B5563;
    --grey-bg: #1F2937;
    --light-grey: #374151;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Agency FB', sans-serif;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--medium-blue) 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(10, 14, 31, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-cyan);
}

.logo-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    width: 200px;
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s ease;
}

.logo-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Hero and Steps Wrapper */
.hero-steps-wrapper {
    position: relative;
    background-image: url('hero-bg.jpg?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-steps-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 31, 0.85);
    z-index: 0;
}

.hero-steps-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 204, 255, 0.8),
        0 0 20px rgba(0, 204, 255, 0.8),
        0 0 30px rgba(0, 204, 255, 0.6),
        0 0 40px rgba(0, 204, 255, 0.4),
        0 0 60px rgba(0, 204, 255, 0.3);
    filter: drop-shadow(0 0 20px rgba(0, 204, 255, 0.9));
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            2px 2px 0px rgba(0, 0, 0, 0.8),
            0 0 10px rgba(0, 204, 255, 0.8),
            0 0 20px rgba(0, 204, 255, 0.8),
            0 0 30px rgba(0, 204, 255, 0.6),
            0 0 40px rgba(0, 204, 255, 0.4),
            0 0 60px rgba(0, 204, 255, 0.3);
        filter: drop-shadow(0 0 20px rgba(0, 204, 255, 0.9));
    }
    50% {
        text-shadow: 
            2px 2px 0px rgba(0, 0, 0, 0.8),
            0 0 12px rgba(0, 204, 255, 0.9),
            0 0 24px rgba(0, 204, 255, 0.9),
            0 0 36px rgba(0, 204, 255, 0.7),
            0 0 48px rgba(0, 204, 255, 0.5),
            0 0 70px rgba(0, 204, 255, 0.4);
        filter: drop-shadow(0 0 24px rgba(0, 204, 255, 0.95));
    }
}

.pricing-text {
    font-family: 'Agency FB', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-white);
    margin: 30px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
}

.hashtag-highlight {
    color: var(--accent-cyan);
    font-weight: 700;
}

.hero-intro {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-light);
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Stack Sans Headline', sans-serif;
}

.highlight {
    color: var(--accent-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

/* Steps Section */
.steps-section {
    padding: 80px 20px;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 0;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    align-items: stretch;
}


.step-card {
    background: var(--black);
    padding: 35px 20px;
    border-radius: 16px;
    text-align: center;
    border: 3px solid var(--accent-cyan);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 191, 255, 0.2);
    z-index: 1;
    height: 100%;
    isolation: isolate;
}


.step-card:nth-child(1) {
    z-index: 4;
}

.step-card:nth-child(2) {
    z-index: 3;
}

.step-card:nth-child(3) {
    z-index: 2;
}

.step-card:nth-child(4) {
    z-index: 1;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 25px solid var(--accent-cyan);
    z-index: 101;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.6));
    pointer-events: none;
    clip-path: none;
}

.step-card > * {
    position: relative;
    z-index: 2;
}

.step-card:not(:last-child)::after {
    z-index: 101;
}

@media (min-width: 1201px) {
    .step-card {
        padding: 40px 25px;
    }
    
    .step-card:not(:last-child)::after {
        right: -35px;
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 30px solid var(--accent-cyan);
    }
}


.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--bright-cyan);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.4), 0 0 30px rgba(0, 255, 255, 0.3);
}

.step-number {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
    display: block;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 191, 255, 0.5);
    font-weight: 900;
}

@media (min-width: 1201px) {
    .step-number {
        font-size: 3.5rem;
    }
}


.step-description {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.7;
    font-family: 'Stack Sans Headline', sans-serif;
    flex-grow: 1;
}

.step-highlight {
    font-size: 1rem;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    font-family: 'Stack Sans Headline', sans-serif;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

@media (min-width: 1201px) {
    .step-description {
        font-size: 1.05rem;
    }
}

.step-character {
    width: 180px;
    height: 180px;
    margin: -30px auto 20px auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 191, 255, 0.4)) drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
    transition: transform 0.3s ease;
    display: block;
    z-index: 2;
    position: relative;
}

.step-card:hover .step-character {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(0, 191, 255, 0.6)) drop-shadow(0 0 30px rgba(0, 255, 255, 0.5));
}

.download-link {
    display: inline-block;
    background: var(--accent-cyan);
    color: #000000;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 3px solid var(--bright-cyan);
    font-family: 'Stack Sans Headline', sans-serif;
    margin-top: auto;
    text-align: center;
    line-height: 1.4;
    font-size: 1rem;
}

.download-link:hover {
    background: var(--bright-cyan);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.6);
    border-color: var(--bright-cyan);
}

.arrow-flow {
    display: none;
}

.benefits {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
}

.benefit-text {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--accent-cyan);
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 191, 255, 0.6);
}

.benefit-subtext {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    color: var(--text-light);
    margin-top: 15px;
    opacity: 0.9;
}

/* Video Section */
.video-section {
    padding: 80px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.video-container {
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 10px 40px rgba(0, 191, 255, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    background: var(--black);
}

.video-section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--metallic-blue);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 0px var(--metallic-blue-dark),
        0 0 15px rgba(74, 144, 226, 0.6);
    background: linear-gradient(135deg, var(--metallic-blue-light) 0%, var(--metallic-blue) 50%, var(--metallic-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
}

.submit-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--bright-cyan) 100%);
    color: var(--black);
    padding: 30px 80px;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 12px;
    text-decoration: none;
    border: 3px solid var(--bright-cyan);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
    border-color: var(--bright-cyan);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
    filter: grayscale(100%);
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
}

.cta-text {
    margin-top: 20px;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

/* Info Section (FAQ & Rules) */
.info-section {
    padding: 80px 20px;
    background: rgba(10, 14, 31, 0.8);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: var(--black);
    border-radius: 12px;
    border: 2px solid var(--accent-cyan);
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--bright-cyan);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: var(--text-white);
    font-size: 2.3rem;
    font-weight: 700;
    text-align: left;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(0, 191, 255, 0.1);
}

.info-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    border-radius: 50%;
    color: var(--accent-cyan);
    flex-shrink: 0;
    border: 2px solid var(--accent-cyan);
}

.info-title {
    flex: 1;
    font-family: 'Agency FB', sans-serif;
}

.accordion-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--bright-cyan);
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-content.active {
    max-height: 10000px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.accordion-body {
    padding: 30px 40px 40px 40px;
    color: var(--text-light);
    line-height: 1.9;
    font-family: 'Stack Sans Headline', sans-serif;
    font-size: 1.1rem;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item p {
    margin-bottom: 12px;
}

.faq-item p:last-child {
    margin-bottom: 0;
    margin-left: 0;
}

.faq-item strong {
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
}

.faq-item a {
    color: var(--bright-cyan);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-item a:hover {
    color: var(--accent-cyan);
}

.rules-list p {
    margin-bottom: 20px;
    line-height: 1.9;
    padding-left: 10px;
}

.rules-list p:last-child {
    margin-bottom: 0;
}

.rules-list strong {
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid var(--accent-cyan);
}

.footer-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Stack Sans Headline', sans-serif;
}

.footer-link:hover {
    color: var(--bright-cyan);
    text-decoration: underline;
}

.footer-separator {
    color: var(--text-light);
    opacity: 0.5;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-top: 15px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .step-card:not(:last-child)::after {
        display: none;
    }
    
    .step-card:nth-child(2)::after {
        display: block;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-left: 25px solid var(--accent-cyan);
    }
}

@media (max-width: 768px) {
    .header {
        position: relative;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-card {
        padding: 40px 30px;
    }
    
    .step-card:not(:last-child)::after {
        display: none;
    }
    
    .step-character {
        width: 140px;
        height: 140px;
        margin: -20px auto 15px auto;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-body {
        padding: 25px 25px 30px 25px;
        font-size: 1rem;
    }
    
    .faq-item {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    
    .submit-btn {
        padding: 25px 60px;
        font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    }
    
    .hero-steps-wrapper {
        background-attachment: scroll;
    }
    
    .video-container {
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 1px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    
    .step-character {
        width: 120px;
        height: 120px;
        margin: -15px auto 15px auto;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .submit-btn {
        padding: 22px 50px;
        font-size: clamp(1.4rem, 4vw, 2.2rem);
    }
    
    .accordion-body {
        padding: 20px 20px 25px 20px;
    }
    
    .faq-item {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
}

/* Legal Pages Styling */
.legal-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--grey-bg) 100%);
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(31, 41, 55, 0.6);
    padding: 50px 40px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
}

.legal-title {
    font-family: 'Agency FB', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: var(--metallic-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--metallic-blue-light) 0%, var(--metallic-blue) 50%, var(--metallic-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-meta {
    font-family: 'Stack Sans Headline', sans-serif;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.legal-body {
    margin-top: 40px;
    font-family: 'Stack Sans Headline', sans-serif;
    color: var(--text-light);
    line-height: 1.9;
}

.legal-body h2 {
    font-family: 'Agency FB', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-white);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-body h3 {
    font-family: 'Agency FB', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--accent-cyan);
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: bold;
}

.legal-body p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.legal-body ul {
    margin: 15px 0 15px 30px;
    padding-left: 20px;
}

.legal-body li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.legal-body ul li::marker {
    color: var(--accent-cyan);
}

.legal-link {
    color: var(--accent-cyan);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--bright-cyan);
}

.legal-acceptance {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.legal-acceptance h2 {
    margin-top: 0;
}

.legal-back {
    margin-top: 40px;
    text-align: center;
}

.back-link {
    display: inline-block;
    color: var(--accent-cyan);
    text-decoration: none;
    font-family: 'Stack Sans Headline', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid var(--accent-cyan);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: var(--accent-cyan);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 25px;
    }
    
    .legal-body {
        font-size: 0.95rem;
    }
    
    .legal-body p,
    .legal-body li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 40px 15px;
    }
    
    .legal-content {
        padding: 25px 20px;
    }
    
    .legal-body ul {
        margin-left: 20px;
        padding-left: 15px;
    }
}

