* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #100c0a;
    color: white;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    position: relative;
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.second-page-bg,
.third-page-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(247, 255, 26, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-duration: 20s;
    background: radial-gradient(circle, rgba(247, 255, 26, 0.15) 0%, transparent 70%);
}

.particle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-duration: 25s;
    animation-delay: -5s;
    background: radial-gradient(circle, rgba(247, 255, 26, 0.1) 0%, transparent 70%);
}

.particle:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-duration: 18s;
    animation-delay: -8s;
    background: radial-gradient(circle, rgba(247, 255, 26, 0.08) 0%, transparent 70%);
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 255, 26, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 8s infinite alternate;
}

.glow-1 {
    top: -100px;
    right: -100px;
}

.glow-2 {
    bottom: -150px;
    left: -150px;
    animation-delay: -4s;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(247, 255, 26, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 255, 26, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.interactive-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.hover-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #f7ff1a;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: particleFade 1s ease-out forwards;
}

@keyframes particleFade {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(16, 12, 10, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 40px;
}

.logo img {
    height: 100%;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f7ff1a;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #f7ff1a;
}

.sign-in {
    background-color: #f7ff1a;
    color: #100c0a;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.sign-in::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;
}

.sign-in:hover::before {
    left: 100%;
}

.sign-in:hover {
    background-color: #e5ec00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 255, 26, 0.4);
}

.hero {
    padding: 150px 0;
    min-height: 80vh;
    position: relative;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
    height: 70vh;
}

.hero-content {
    max-width: 600px;
    flex: 1;
}

.hero h1 {
    font-size: 72px;
    margin-bottom: 10px;
    color: white;
    font-family: 'Anton', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    white-space: pre-line;
}

.v-bucks {
    font-size: 48px;
    margin-bottom: 30px;
    color: #f7ff1a;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.play-now {
    background-color: #f7ff1a;
    color: #100c0a;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.play-now::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.5s;
}

.play-now:hover::before {
    left: 100%;
}

.play-now:hover {
    background-color: #e5ec00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(247, 255, 26, 0.4);
}

.free {
    background-color: transparent;
    color: #f7ff1a;
    border: 2px solid #f7ff1a;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.free::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 255, 26, 0.2), transparent);
    transition: left 0.5s;
}

.free:hover::before {
    left: 100%;
}

.free:hover {
    background-color: rgba(247, 255, 26, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(247, 255, 26, 0.3);
}

.skin-image {
    flex: 1;
    display: flex;
    height: 100%;
    margin-top: -110px;
}

.skin-image img {
    width: 127%;
    height: 127%;
    object-fit: contain;
    margin-bottom: 0;
}

.hero-content h1, .hero-content .v-bucks, .hero-content p, .hero-content .cta-buttons {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
    cursor: pointer;
    z-index: 5;
}

.scroll-text {
    color: #f7ff1a;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Anton', sans-serif;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 3px solid #f7ff1a;
    border-bottom: 3px solid #f7ff1a;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

.second-page {
    min-height: 100vh;
    padding: 100px 20px;
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.8s ease;
    overflow: hidden;
}

.second-page.active {
    transform: translateY(0);
    opacity: 1;
}

.second-page-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.second-page h2 {
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 80px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.second-page h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, white, transparent);
}

.steps-container {
    position: relative;
    margin-bottom: 80px;
}

.step-line {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, white, transparent);
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 30px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #f7ff1a;
    color: #100c0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Anton', sans-serif;
    box-shadow: 0 5px 15px rgba(247, 255, 26, 0.3);
}

.step-card h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 16px;
}

.icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto 25px;
}

.scroll-indicator-2 {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.third-page {
    min-height: 100vh;
    padding: 100px 20px;
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.8s ease;
    overflow: hidden;
}

.third-page.active {
    transform: translateY(0);
    opacity: 1;
}

.third-page-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 70vh;
    position: relative;
    z-index: 2;
}

.third-page-content {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.third-page-title {
    font-size: 72px;
    color: white;
    margin-bottom: 30px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.third-page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f7ff1a, transparent);
}

.third-page-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.battle-pass-btn {
    background: linear-gradient(135deg, #f7ff1a, #e5ec00);
    color: #100c0a;
    border: none;
    padding: 20px 50px;
    border-radius: 12px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(247, 255, 26, 0.3);
    margin-bottom: 60px;
    display: inline-block;
}

.battle-pass-btn::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.7s;
    z-index: -1;
}

.battle-pass-btn:hover::before {
    left: 100%;
}

.battle-pass-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(247, 255, 26, 0.5);
}

.social-icons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: #f7ff1a;
    color: #100c0a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(247, 255, 26, 0.3);
}

.video-container {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
}

.battle-pass-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(247, 255, 26, 0.1), transparent);
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        height: auto;
    }
    
    .hero-content {
        margin: 0;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .v-bucks {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .skin-image {
        justify-content: center;
        height: 300px;
        margin-top: 0;
    }

    .skin-image img {
        max-height: 300px;
        width: 100%;
        height: auto;
    }

    .particle, .glow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .v-bucks {
        font-size: 28px;
    }
    
    .play-now,
    .free {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .skin-image {
        height: 250px;
    }
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .step-line {
        top: 0;
        left: 50px;
        width: 3px;
        height: 100%;
        transform: translateX(0);
        background: linear-gradient(180deg, white, transparent);
    }
    
    .step-card {
        padding-left: 80px;
        text-align: left;
    }
    
    .step-number {
        left: 0;
        transform: translateX(-50%);
    }
    
    .icon-img {
        position: absolute;
        left: 80px;
        top: 50px;
        margin: 0;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .second-page h2 {
        font-size: 36px;
    }
    
    .step-card {
        padding: 60px 20px 30px;
        text-align: center;
    }
    
    .step-line {
        display: none;
    }
    
    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .icon-img {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 auto 20px;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .second-page {
        padding: 60px 20px;
    }
    
    .second-page h2 {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .step-card h3 {
        font-size: 22px;
    }
    
    .step-card p {
        font-size: 14px;
    }
    
    .icon-img {
        width: 60px;
        height: 60px;
    }
    
    .step-card {
        padding: 60px 15px 25px;
    }
}

@media (max-width: 1024px) {
    .third-page-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .third-page-content {
        max-width: 100%;
    }
    
    .third-page-title {
        font-size: 56px;
    }
    
    .video-container {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .third-page-title {
        font-size: 42px;
    }
    
    .third-page-description {
        font-size: 18px;
    }
    
    .battle-pass-btn {
        padding: 15px 40px;
        font-size: 18px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .third-page {
        padding: 60px 20px;
    }
    
    .third-page-title {
        font-size: 36px;
    }
    
    .third-page-description {
        font-size: 16px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}