/* Premium Homepage Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Premium Apple-style Scrolling Animations */

/* Navigation dots for section scrolling (Apple style) */
.section-nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav-dot::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dot.active {
    background-color: #FFD700;
    transform: scale(1.2);
}

.nav-dot.active::before {
    border-color: rgba(255, 215, 0, 0.5);
    width: 30px;
    height: 30px;
}

.nav-dot:hover {
    background-color: #FFD700;
    transform: scale(1.1);
}

/* Scroll indicator animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 10;
    color: white;
    animation: fadeInUp 1.5s ease-out 1s forwards;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid #FFD700;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 4px;
    margin-left: -2px;
    background-color: #FFD700;
    border-radius: 50%;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 0.8; transform: translate(-50%, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.reveal-element {
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.revealed {
    opacity: 1;
}

.from-bottom {
    transform: translateY(50px);
}

.from-bottom.revealed {
    transform: translateY(0);
}

.from-right {
    transform: translateX(50px);
}

.from-right.revealed {
    transform: translateX(0);
}

.from-left {
    transform: translateX(-50px);
}

.from-left.revealed {
    transform: translateX(0);
}

.scale-up {
    transform: scale(0.9);
}

.scale-up.revealed {
    transform: scale(1);
}

/* General Styles */
.premium-main {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    margin: 0;
    padding: 0;
}

/* Apple-style section snap scrolling */
.premium-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    /* display: flex; */
    /* align-items: center; */
    position: relative;
    padding: 80px 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.premium-section-header {
    text-align: center;
    margin-bottom: 60px;
    display: inline-block;
    width: 100%;
}

.premium-section.in-view {
    transform: translateY(0);
    opacity: 1;
}

.premium-section:not(.in-view) {
    transform: translateY(50px);
    opacity: 0.7;
}

.premium-container {
    max-width: 1400px;
    width: 94%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
    height: 100%;
}

.premium-section {
    padding: 100px 0;
    position: relative;
}

.premium-section-alt {
    background-color: rgba(248, 249, 250, 0.85);
    position: relative;
}

.premium-section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/3.png') center center/cover no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-tag {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.premium-section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a2e;
    line-height: 1.2;
}

.highlight {
    color: #FFD700;
    position: relative;
    z-index: 1;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    height: 8px;
    width: 100%;
    background-color: rgba(255, 215, 0, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.premium-section-description {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.premium-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.button-icon {
    margin-right: 10px;
    font-size: 18px;
}

.premium-button-primary {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a2e;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transition: all 0.5s ease;
    z-index: -1;
}

.premium-button-primary:hover::before {
    width: 100%;
}

.premium-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.5);
    color: #000;
}

.premium-button-secondary {
    display: inline-block;
    padding: 14px 34px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.7);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 215, 0, 0.15);
    transition: all 0.5s ease;
    z-index: -1;
}

.premium-button-secondary:hover::before {
    width: 100%;
}

.premium-button-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
    color: #000;
}

/* Hero Section */
.premium-hero-section {
    position: relative;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('../images/1.png') center center/cover no-repeat fixed;
    color: white;
    animation: fadeIn 1.2s ease-out;
    margin: 0;
    top: 0;
    left: 0;
    margin-top: -80px; /* Compensate for header space */
    margin-bottom: 0;
    scroll-snap-align: start;
}

.premium-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    min-height: 100vh;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.premium-hero-text {
    flex: 1 1 450px;
    text-align: left;
    padding: 40px 0;
    animation: slideInLeft 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.premium-hero-image {
    flex: 1 1 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: slideInRight 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

/* Spinning Player Animation */
/* Game-Style Premium Player */
.premium-player-container {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 350px;
    height: 500px;
    z-index: 10;
    perspective: 1200px;
    transform-style: preserve-3d;
    animation: floatPlayer 6s ease-in-out infinite;
}

.premium-player {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(50px) rotateY(0deg);
    transition: transform 1s cubic-bezier(.19,1,.22,1);
}

.premium-player:hover {
    transform: translateZ(50px) rotateY(15deg) translateY(-10px);
}

.player-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30,30,60,0.9), rgba(20,20,45,0.95));
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(.19,1,.22,1);
    border: 1px solid rgba(255,215,0,0.3);
    backdrop-filter: blur(5px);
}

.player-card:before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(255,215,0,0.4) 0%,
        rgba(255,215,0,0.1) 25%,
        rgba(255,215,0,0) 60%
    );
    opacity: 0.8;
    pointer-events: none;
}

.player-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.player-photo {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    transform: translateZ(10px);
}

.avatar-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255,215,0,0.8);
    box-shadow: 
        0 0 25px rgba(255,215,0,0.6),
        inset 0 0 20px rgba(255,215,0,0.4);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

.avatar-image {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    background: linear-gradient(120deg, #16213e, #1a1a2e);
}

.avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    animation: playerBreathing 4s ease-in-out infinite;
}

/* Player Status Styles */
.player-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 15px;
    transform-style: preserve-3d;
    transform: translateZ(15px);
}

.status-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.status-badge.online {
    background: rgba(39, 174, 96, 0.8);
    color: white;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.5);
    animation: pulse 2s infinite;
}

.status-level {
    font-size: 12px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Player Avatar Styles */
.player-avatar {
    position: relative;
    margin: 10px auto 30px;
    width: 180px;
    height: 180px;
    transform-style: preserve-3d;
    transform: translateZ(20px);
}

.avatar-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    z-index: 10;
    transform: translateZ(5px);
}

/* Player info styles */
.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: center;
    transform-style: preserve-3d;
    transform: translateZ(20px);
    padding: 0 15px;
}

.spinning-player:hover .player-info {
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
}

.player-name {
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(255,215,0,0.7);
    color: #FFD700;
    letter-spacing: 1px;
    background: linear-gradient(to bottom, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: nameGlow 3s ease-in-out infinite;
}

.player-level {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.player-class {
    font-size: 14px;
    color: #FFC107;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255,215,0,0.3);
    border-top: 1px solid rgba(255,215,0,0.3);
}

/* Player stats styling */
.player-stats {
    margin: 15px 0;
}

.stat {
    margin-bottom: 12px;
    text-align: left;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4px;
    font-weight: 600;
}

.stat-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
}

.stat-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease-out;
    position: relative;
}

.stat-fill:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.1) 100%);
    animation: shimmer 2s infinite linear;
    transform: translateX(-100%);
}

.power {
    background: linear-gradient(90deg, #FF6B6B, #FF8E53);
}

.team {
    background: linear-gradient(90deg, #56CCF2, #2F80ED);
}

.earnings {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.player-rating {
    margin-top: 15px;
}

.player-rating i {
    color: #FFD700;
    margin: 0 2px;
    text-shadow: 0 0 5px rgba(255,215,0,0.7);
    animation: starPulse 2s ease-in-out infinite;
}

.player-rating i:nth-child(2) {
    animation-delay: 0.4s;
}

.player-rating i:nth-child(3) {
    animation-delay: 0.8s;
}

.player-rating i:nth-child(4) {
    animation-delay: 1.2s;
}

.player-rating i:nth-child(5) {
    animation-delay: 1.6s;
}

/* Player effects */
.player-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(255,215,0,0.4), inset 0 0 30px rgba(255,215,0,0.1);
    opacity: 0;
    animation: glowEffect 5s ease-in-out infinite;
}

.particle-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.particle-effect:before,
.particle-effect:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255,215,0,0.7);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,215,0,0.8);
    filter: blur(1px);
    animation: particleFloat 15s linear infinite;
}

.particle-effect:before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-effect:after {
    top: 70%;
    left: 85%;
    animation-delay: -7.5s;
}

/* Add more particles with pseudo-elements */
.premium-player:before,
.premium-player:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255,215,0,0.6);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255,215,0,0.5);
    filter: blur(1px);
    animation: particleFloat 20s linear infinite;
    z-index: 15;
}

.premium-player:before {
    top: 40%;
    left: -5%;
    animation-delay: -5s;
}

.premium-player:after {
    top: 30%;
    right: -5%;
    animation-delay: -12.5s;
}

/* Card animations */
@keyframes floatPlayer {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-53%);
    }
}

@keyframes glowEffect {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-100px) translateX(50px) rotate(90deg);
    }
    50% {
        transform: translateY(-200px) translateX(-30px) rotate(180deg);
    }
    75% {
        transform: translateY(-100px) translateX(-80px) rotate(270deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

@keyframes playerBreathing {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.15);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255,215,0,0.6), inset 0 0 20px rgba(255,215,0,0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(255,215,0,0.8), inset 0 0 30px rgba(255,215,0,0.6);
    }
}

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

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

@keyframes nameGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255,215,0,0.7);
    }
    50% {
        text-shadow: 0 0 20px rgba(255,215,0,1);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(39, 174, 96, 0.5);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(39, 174, 96, 0.8);
    }
    100% {
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(39, 174, 96, 0.5);
    }
}

/* Player Stat Cards */
.player-stat-card {
    position: absolute;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    transition: all 0.3s ease;
    z-index: 11;
    width: 120px;
    animation: floatCard 5s ease-in-out infinite;
}

.player-stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    border-color: rgba(255,215,0,0.6);
}

.stat-card-1 {
    top: -20px;
    right: -80px;
    animation-delay: 0.5s;
}

.stat-card-2 {
    bottom: 10px;
    right: -60px;
    animation-delay: 1.5s;
}

.stat-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(255,215,0,0.3);
}

.stat-card-value {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.stat-card-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

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

.spinning-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform-style: preserve-3d;
    transform: translateZ(-50px);
    animation: rotateParticleField 20s linear infinite;
}

.spinning-particles span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
    transform-style: preserve-3d;
    animation: particleFly 5s linear infinite;
}

.spinning-particles span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0));
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.spinning-particles span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(0deg) translateX(90px) rotate(0deg);
    animation-delay: 0s;
}

.spinning-particles span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(60deg) translateX(90px) rotate(-60deg);
    animation-delay: -1s;
}

.spinning-particles span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(120deg) translateX(90px) rotate(-120deg);
    animation-delay: -2s;
}

.spinning-particles span:nth-child(4) {
    transform: translate(-50%, -50%) rotate(180deg) translateX(90px) rotate(-180deg);
    animation-delay: -3s;
}

.spinning-particles span:nth-child(5) {
    transform: translate(-50%, -50%) rotate(240deg) translateX(90px) rotate(-240deg);
    animation-delay: -4s;
}

.spinning-particles span:nth-child(6) {
    transform: translate(-50%, -50%) rotate(300deg) translateX(90px) rotate(-300deg);
    animation-delay: -5s;
}

@keyframes spinPlayer {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes rotateParticleField {
    0% {
        transform: translateZ(-50px) rotateZ(0deg);
    }
    100% {
        transform: translateZ(-50px) rotateZ(360deg);
    }
}

@keyframes playerPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes spin3D {
    0% {
        transform: rotateY(0deg) rotateX(10deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

@keyframes particleFly {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg) translateX(50px) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg) scale(1.2);
    }
}

.hero-main-img {
    max-width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-8deg);
    transition: all 0.8s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.premium-hero-image:hover .hero-main-img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Floating Cards for Hero Section */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
    z-index: 3;
    animation: floatAnimation 5s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-primary {
    bottom: 30%;
    right: 10%;
    animation-delay: 0.5s;
}

.card-secondary {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-size: 18px;
}

.card-title {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.card-graph {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.4));
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.card-graph::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, transparent 10%, #FFD700 10%, #FFD700 15%, transparent 15%, transparent 40%, #FFD700 40%, #FFD700 45%, transparent 45%, transparent 60%, #FFD700 60%, #FFD700 65%, transparent 65%, transparent 80%, #FFD700 80%, #FFD700 85%, transparent 85%);
    background-size: 200% 100%;
    animation: graphAnimation 3s linear infinite;
}

.card-count {
    font-weight: 700;
    font-size: 18px;
    color: #FFD700;
    display: flex;
    align-items: center;
}

.card-count::before {
    content: '\2191';
    margin-right: 5px;
    color: #2ecc71;
}

@keyframes graphAnimation {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

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

/* Section Divider */
/* Premium Section Divider */
.premium-divider-container {
    position: absolute;
    bottom: -5px; /* Slight overlap to prevent gaps */
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}

.gold-accent-line {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255,215,0,0) 0%, 
        rgba(255,215,0,0.8) 20%, 
        rgba(255,215,0,1) 50%, 
        rgba(255,215,0,0.8) 80%, 
        rgba(255,215,0,0) 100%);
    margin: 0 auto;
    width: 70%;
    box-shadow: 0 0 10px rgba(255,215,0,0.7);
    z-index: 15;
}

.premium-wave-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -1px;
}

.premium-wave {
    width: 100%;
    height: 120px;
    filter: drop-shadow(0 -5px 10px rgba(0,0,0,0.3));
}

/* Gold particles in divider */
.premium-divider-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.premium-divider-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,215,0,0.8), 0 0 20px rgba(255,215,0,0.5);
    animation: floatingDividerParticle 6s ease-in-out infinite;
    opacity: 0.7;
}

.premium-divider-particles .p1 {
    left: 20%;
    top: 20%;
    animation-delay: 0s;
}

.premium-divider-particles .p2 {
    left: 50%;
    top: 40%;
    animation-delay: 2s;
}

.premium-divider-particles .p3 {
    left: 80%;
    top: 30%;
    animation-delay: 4s;
}

@keyframes floatingDividerParticle {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

.animated-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    position: relative;
    display: inline-block;
}

.animated-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 10px;
}

.premium-hero-subtitle {
    font-size: 18px;
    margin: 30px 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.premium-hero-buttons {
    margin: 40px 0;
    display: flex;
    gap: 20px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding: 20px 0;
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, #FFD700, rgba(255, 215, 0, 0));
}

.stat-item {
    text-align: center;
}

.hero-stats .stat-item {
    text-align: center;
    position: relative;
}

.hero-stats .stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    background: rgba(255, 215, 0, 0.3);
}

.hero-stats .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.floating-card {
    position: absolute;
    width: 180px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.card-primary {
    top: 20px;
    right: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    animation-delay: 0s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-secondary {
    bottom: 40px;
    left: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    animation-delay: 1.5s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-icon {
    font-size: 20px;
    color: #2461FF;
    margin-bottom: 10px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.card-graph {
    height: 40px;
    background: linear-gradient(90deg, rgba(36, 97, 255, 0.3) 0%, rgba(36, 97, 255, 0.6) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.card-graph:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 20%);
    animation: shimmer 2s infinite;
}

.card-count {
    font-size: 14px;
    font-weight: 500;
    color: #a3b8ff;
}

.hero-bottom-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
    overflow: hidden;
}

.hero-bottom-wave img {
    width: 100%;
    height: 150px;
    display: block;
    object-fit: fill;
    transform: rotate(180deg);
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Features Section */
.premium-features {
    background: url('../images/2.png') center center/cover no-repeat fixed;
    padding: 100px 0 80px;
    position: relative;
    margin-top: -1px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    color: white;
    
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
}

.feature-card.revealed {
    transform: translateY(0);
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.2));
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #1a1a2e;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.premium-section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.premium-features .premium-section-title,
.premium-cta .premium-section-title {
    color: white;
}

.premium-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 3px;
}

/* How It Works Section */
.premium-bonus-system {
    position: relative;
    background: url('../images/4.png') center center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section-shape-top, 
.section-shape-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    transform: translateY(-1px);
}

.section-shape-top {
    top: -1px;
}

.section-shape-bottom {
    bottom: -1px;
}

.section-shape-top img,
.section-shape-bottom img {
    width: 100%;
    height: 150px;
    display: block;
    object-fit: cover;
}

.premium-bonus-system .premium-container {
    position: relative;
    z-index: 2;
}

.premium-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.premium-step {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
}

.step-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.premium-step:hover .step-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.premium-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2461FF;
    color: white;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #1a1a2e;
}

.premium-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.workflow-illustration {
    position: relative;
    height: 400px;
    margin: 50px auto;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.workflow-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.workflow-circle.level-1 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: #2461FF;
}

.workflow-circles.level-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.workflow-circles.level-2 .workflow-circle {
    width: 70px;
    height: 70px;
    background: rgba(36, 97, 255, 0.1);
    z-index: 2;
}

.workflow-circles.level-2 .workflow-circle:nth-child(1) {
    top: 20%;
    left: 30%;
}

.workflow-circles.level-2 .workflow-circle:nth-child(2) {
    top: 60%;
    left: 20%;
}

.workflow-circles.level-2 .workflow-circle:nth-child(3) {
    top: 40%;
    right: 25%;
}

.workflow-circle-content {
    text-align: center;
}

.workflow-circle.level-1 .icon {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 5px;
}

.workflow-circle.level-1 .label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.workflow-circles.level-2 .icon {
    font-size: 24px;
    color: #2461FF;
}

.workflow-earnings {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.earnings-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.earnings-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.earnings-value {
    font-size: 20px;
    font-weight: 700;
    color: #2461FF;
}

/* Testimonials Section */
.premium-testimonials {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: url('../images/3.png') center center/cover no-repeat;
}

.premium-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 0;
}

.premium-testimonials .premium-container {
    position: relative;
    z-index: 1;
}

.section-shape-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.7;
}

.testimonial-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transform: scale(1.05);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.premium-testimonial {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.premium-testimonial-avatar {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #2461FF;
    box-shadow: 0 3px 10px rgba(36, 97, 255, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #1a1a2e;
}

.testimonial-role {
    font-size: 14px;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #2461FF;
    margin-left: 10px;
}

.verified-badge i {
    margin-right: 4px;
}

.testimonial-rating {
    display: flex;
    margin-bottom: 15px;
    color: #ffb800;
    gap: 2px;
}

.testimonial-rating i {
    filter: drop-shadow(0 2px 3px rgba(255, 184, 0, 0.2));
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: '\201C';
    font-size: 60px;
    font-family: Georgia, serif;
    color: rgba(36, 97, 255, 0.1);
    position: absolute;
    left: -15px;
    top: -15px;
}

.testimonial-earned {
    font-size: 16px;
    font-weight: 600;
    color: #2461FF;
    margin: 0;
}

.testimonial-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2461FF;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* Call to Action Section */
.premium-cta {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/6.png') center center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.premium-cta .premium-container {
    position: relative;
    z-index: 1;
}

.premium-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.premium-cta-text {
    flex: 1;
    max-width: 500px;
}

.premium-cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.premium-cta-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.premium-cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.premium-cta-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.premium-cta-feature i {
    color: #2461FF;
    margin-right: 10px;
    font-size: 18px;
}

.premium-cta-pricing {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: inline-block;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.premium-cta-form {
    flex: 1;
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Milestone Bonuses Section */
.premium-milestone-bonuses {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.milestone-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.milestone-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #2461FF;
    transition: all 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.milestone-target {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2461FF;
}

.milestone-reward {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.milestone-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.milestone-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(36, 97, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #2461FF;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .premium-hero-section {
        padding: 100px 0 160px;
    }
    
    .animated-title {
        font-size: 42px;
    }
    
    .premium-hero-content {
        flex-direction: column-reverse;
    }
    
    .premium-hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .premium-hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid,
    .testimonials-grid,
    .milestone-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-cta-content {
        flex-direction: column;
    }
    
    .premium-cta-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .premium-cta-features {
        display: inline-block;
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    .premium-section {
        padding: 80px 0;
    }
    
    .premium-hero-section {
        padding: 80px 0 140px;
    }
    
    .floating-card {
        position: relative;
        display: none;
    }
    
    .animated-title {
        font-size: 36px;
    }
    
    .premium-hero-subtitle {
        font-size: 18px;
    }
    
    .features-grid,
    .testimonials-grid,
    .milestone-cards {
        grid-template-columns: 1fr;
    }
    
    .premium-steps {
        grid-template-columns: 1fr;
    }
    
    .premium-section-title {
        font-size: 32px;
    }
    
    .floating-card {
        width: 140px;
    }
    
    .card-primary {
        top: 20px;
        right: 20px;
    }
    
    .card-secondary {
        bottom: 20px;
        left: 20px;
    }
    
    .workflow-illustration {
        height: 350px;
    }
    
    .workflow-earnings {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Bonus System Section */
.premium-bonuses {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.premium-bonus-card {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background-color: #fff;
}

.premium-bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.premium-bonus-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(36, 97, 255, 0.15);
    border: 2px solid #2461FF;
}

.premium-bonus-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.premium-bonus-header {
    background-color: #2461FF;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.premium-bonus-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.premium-bonus-referrals {
    font-size: 18px;
    font-weight: 600;
}

.premium-bonus-content {
    padding: 25px 20px;
    text-align: center;
}

.premium-bonus-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.premium-bonus-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Deposit System Section */
.premium-deposit-example {
    max-width: 600px;
    margin: 0 auto;
}

.premium-deposit-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.premium-deposit-header {
    background-color: #2461FF;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 20px;
    font-weight: 600;
}

.premium-deposit-content {
    padding: 30px;
}

.premium-deposit-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.premium-deposit-step:last-child {
    margin-bottom: 0;
}

.premium-deposit-number {
    width: 40px;
    height: 40px;
    background-color: #2461FF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 5px;
}

.premium-deposit-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.premium-deposit-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Testimonials Section */
.premium-testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.premium-testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(36, 97, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2461FF;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.premium-testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-quote-mark {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 40px;
    color: rgba(36, 97, 255, 0.2);
    z-index: 1;
    opacity: 0.8;
}

.premium-testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0 0 20px;
    padding: 15px 0 0 20px;
    position: relative;
    z-index: 2;
}

.premium-testimonial-author {
    display: flex;
    align-items: center;
}

.premium-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 15px;
}

.premium-testimonial-name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.premium-testimonial-title {
    color: #777;
    font-size: 14px;
}

/* CTA Section */
.premium-cta {
    background: linear-gradient(135deg, #1a4cd9, #2461FF);
    color: #fff;
    text-align: center;
}

.premium-cta .premium-section-title,
.premium-cta .premium-section-description {
    color: #fff;
}

.premium-cta-buttons {
    margin-top: 40px;
}

.premium-cta .premium-button-primary {
    background-color: #fff;
    color: #2461FF;
}

.premium-cta .premium-button-primary:hover {
    background-color: #f0f0f0;
    color: #1a4cd9;
}

.premium-cta .premium-button-secondary {
    border-color: #fff;
    color: #fff;
}

.premium-cta .premium-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .premium-section {
        padding: 60px 0;
    }
    
    .premium-section-title {
        font-size: 32px;
    }
    
    .premium-hero-content h1 {
        font-size: 40px;
    }
    
    .premium-hero-subtitle {
        font-size: 20px;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .premium-testimonials {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .premium-section {
        padding: 50px 0;
    }
    
    .premium-section-title {
        font-size: 28px;
    }
    
    .premium-section-description {
        font-size: 16px;
    }
    
    .premium-hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .premium-hero-content {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
        min-height: auto;
        text-align: center;
    }
    
    .premium-hero-text {
        flex: 1 1 100%;
        order: 1;
        padding: 20px 0;
        text-align: center;
    }
    
    .premium-hero-image {
        flex: 1 1 100%;
        order: 2;
        margin-top: 20px;
    }
    
    .premium-hero-content h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .premium-hero-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .stat-item {
        flex: 0 0 100%;
        margin-bottom: 15px;
        padding: 10px 0;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .premium-testimonial {
        margin-bottom: 15px;
    }
    
    .premium-testimonial-content p {
        font-size: 15px;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .stat-number {
        font-size: 28px;
        margin-bottom: 3px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .premium-step {
        min-width: 100%;
    }
    
    .premium-bonus-card {
        min-width: 100%;
    }
    
    .premium-bonus-card.featured {
        transform: scale(1);
    }
    
    .premium-bonus-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .premium-hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .spin-wheel-container {
        transform: scale(0.85);
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .premium-section {
        padding: 40px 0;
    }
    
    .premium-hero-section {
        padding: 90px 0 40px;
    }
    
    .premium-hero-content h1 {
        font-size: 28px;
    }
    
    .premium-hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .premium-button {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .premium-button-secondary {
        margin-left: 0;
    }
    
    .premium-cta-buttons .premium-button {
        margin-bottom: 15px;
    }
    
    .spin-wheel-container {
        transform: scale(0.7);
        margin: -40px auto;
    }
    
    .hero-stats {
        margin-top: 10px;
    }
    
    .stat-item {
        padding: 5px;
    }
    
    .scroll-indicator {
        display: none;
    }
}
