/* ============================================
   ÇARK SİSTEMİ - Modern Wheel Animation CSS
   Netflix/Molen Gaming Inspired Design
   ============================================ */

:root {
    /* Netflix/Molen Gaming Colors */
    --wheel-primary-gradient: linear-gradient(145deg, #0053ff 0%, #08fcfc 100%);
    --wheel-secondary-gradient: linear-gradient(145deg, #08fcfc 0%, #08fcfc 100%);
    --wheel-success-gradient: linear-gradient(145deg, #4CAF50 0%, #2E7D32 100%);
    --wheel-warning-gradient: linear-gradient(145deg, #ff9800 0%, #ef6c00 100%);
    --wheel-gold-gradient: linear-gradient(145deg, #ffffff 0%, #FFA500 100%);
    
    /* Dark Theme Colors */
    --wheel-dark-bg: #0a0a0a;
    --wheel-card-bg: #181b30;
    --wheel-glass-bg: rgba(26, 26, 26, 0.85);
    --wheel-glass-border: #0053ff24;
    --wheel-hover-bg: #0053ff21;
    
    /* Text Colors */
    --wheel-text-primary: #ffffff;
    --wheel-text-secondary: #b3b3b3;
    --wheel-text-muted: #808080;
    
    /* Accent Colors */
    --wheel-accent-red: #0053ff;
    --wheel-accent-red-dark: #08fcfc;
    --wheel-accent-gold: #ffffff;
}

/* ============================================
   CONTAINER & BASE LAYOUT
   ============================================ */

.wheel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 15px;
    /* background: var(--wheel-card-bg); */
    /* backdrop-filter: blur(10px); */
    /* border-radius: 20px; */
    /* border: 1px solid var(--wheel-glass-border); */
    /* box-shadow: 0 8px 32px #0053ff21; */
}

/* ============================================
   CAMPAIGN CARDS GRID (INDEX PAGE)
   ============================================ */

.wheel-campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .wheel-campaigns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .campaign-countdown__timer {
        gap: 6px;
    }
    
    .campaign-countdown__item {
        padding: 8px 3px;
    }
    
    .campaign-countdown__value {
        font-size: 1.3rem;
    }
    
    .campaign-countdown__label {
        font-size: 0.7rem;
    }
    
    .campaign-countdown__title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .wheel-campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.campaign-card {
    background: #181b30;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #0053ff26;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
}

@keyframes cardShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.campaign-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #0053ff5e;
}

.campaign-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.campaign-icon i {
    font-size: 7.5rem;
    color: #0053ff;
    animation: iconSpin 4s linear infinite;
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.campaign-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.campaign-desc {
    color: #b3b3b3;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.campaign-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    padding: 20px;
    background: #0053ff0f;
    border-radius: 15px;
    border: 1px solid #0053ff21;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0053ff;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.85rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.campaign-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(145deg, #0053ff 0%, #08fcfc 100%);
    color: #ffffff;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px #0053ff47;
}

.campaign-warning {
    background: linear-gradient(145deg, #0053ff2b 0%, #0053ff29 100%);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #0053ff45;
}

.campaign-warning i {
    color: #ffc107;
    font-size: 1.3rem;
    margin-right: 10px;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.campaign-warning span {
    color: #ffc107;
    font-weight: 800;
    font-size: 1rem;
}

.campaign-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(145deg, #08fcfc 0%, #08fcfc 100%);
    background-size: 200% 200%;
    color: #181b30;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.campaign-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, height 0.6s;
}

.campaign-btn:hover::before {
    width: 300px;
    height: 300px;
}

.campaign-btn:hover {
    transform: translateY(-3px);
}

.campaign-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.campaign-btn span {
    position: relative;
    z-index: 1;
}

.campaign-btn--disabled {
    background: linear-gradient(145deg, rgba(128, 128, 128, 0.3) 0%, rgba(80, 80, 80, 0.3) 100%);
    color: #808080;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

.campaign-btn--disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Campaign Detail Button */
.campaign-detail-btn {
    width: 100%;
    padding: 12px;
    background: #181b30;
    border: 2px solid #0053ff69;
    color: #08fcfc;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.campaign-detail-btn:hover {
    background: #181b30;
    transform: translateY(-2px);
}

.campaign-detail-btn i {
    font-size: 1.1rem;
}

/* Campaign Countdown (Index Page) */
.campaign-countdown {
    width: 100%;
    padding: 20px 15px;
    background: linear-gradient(145deg, #0053ff1c 0%, #0053ff70 100%);
    border: 2px solid #0053ff47;
    border-radius: 20px;
    margin-top: auto;
}

.campaign-countdown__title {
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-countdown__title i {
    margin-right: 5px;
}

.campaign-countdown__timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.campaign-countdown__item {
    text-align: center;
    padding: 10px 5px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    border: 1px solid #ffffff30;
}

.campaign-countdown__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.campaign-countdown__label {
    display: block;
    font-size: 0.75rem;
    color: #b3b3b3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 30px;
    background: linear-gradient(135deg, #181b30 0%, #181b30 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid #0053ff21;
}

.empty-state__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(145deg, #0053ff21 0%, rgba(143, 24, 30, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #0053ff47;
}

.empty-state__icon i {
    font-size: 4rem;
    color: #808080;
    opacity: 0.5;
}

.empty-state h3 {
    color: #b3b3b3;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.empty-state p {
    color: #808080;
    font-size: 1.1rem;
}

/* History Link */
.wheel-history-link {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(145deg, #0053ff2e 0%, #0053ff24 100%);
    border: 2px solid #0053ff47;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wheel-history-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #0053ff36;
    border-color: #0053ff70;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.wheel-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: #181b30;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--wheel-glass-border);
    position: relative;
    overflow: hidden;
}

.wheel-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
}

.wheel-header__title {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.wheel-header__description {
    font-size: 16px;
    color: var(--wheel-text-secondary);
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============================================
   MAIN WHEEL CARD
   ============================================ */

.wheel-card {
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--wheel-glass-border);
    position: relative;
    overflow: hidden;
    background: #181b30;
}

/* ============================================
   DECORATIVE LIGHTS ANIMATION
   ============================================ */

.wheel-lights {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
}

.wheel-light {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--wheel-accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--wheel-accent-gold),
                0 0 40px var(--wheel-accent-gold),
                0 0 60px rgba(255, 215, 0, 0.3);
    animation: wheelLightPulse 2s ease-in-out infinite;
}

.wheel-light:nth-child(1) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 0s;
}

.wheel-light:nth-child(2) {
    top: 14.6%;
    left: 14.6%;
    animation-delay: 0.25s;
}

.wheel-light:nth-child(3) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.wheel-light:nth-child(4) {
    top: 14.6%;
    right: 14.6%;
    animation-delay: 0.75s;
}

.wheel-light:nth-child(5) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.wheel-light:nth-child(6) {
    bottom: 14.6%;
    right: 14.6%;
    animation-delay: 1.25s;
}

.wheel-light:nth-child(7) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.wheel-light:nth-child(8) {
    bottom: 14.6%;
    left: 14.6%;
    animation-delay: 1.75s;
}

@keyframes wheelLightPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Animated background effect */
.wheel-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(229, 9, 20, 0.03) 0%,
        transparent 50%
    );
    animation: wheelCardPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes wheelCardPulse {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-10%, -10%) scale(1.1);
        opacity: 1;
    }
}

/* Corner decoration */
.wheel-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle at top right,
        rgba(229, 9, 20, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
    border-radius: 25px;
}

/* ============================================
   WHEEL WRAPPER & MAIN SECTION
   ============================================ */

.wheel-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.wheel-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================
   SPINNING WHEEL
   ============================================ */

.wheel-wheel {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 2;
}

.wheel-wheel svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@keyframes wheelGlow {
    0%, 100% {
        box-shadow: 
            0 0 40px #0053ff99,
            0 0 80px #0053ff2e,
            inset 0 0 30px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 
            0 0 60px #0053ffd9,
            0 0 100px #0053ff5e,
            inset 0 0 40px rgba(0, 0, 0, 0.5);
    }
}

.wheel-wheel svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   WHEEL POINTER (ARROW)
   ============================================ */

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 50px solid var(--wheel-accent-red);
    z-index: 20;
    filter: drop-shadow(0 4px 10px #0053ff94);
}

@keyframes pointerPulse {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px);
    }
    50% { 
        transform: translateX(-50%) translateY(5px);
    }
}

.wheel-pointer::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* ============================================
   CENTER BUTTON
   ============================================ */

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--wheel-gold-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    box-shadow: 
        0 8px 25px #0053ff5e,
        0 0 0 4px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wheel-center::before {
    /* content: ''; */
    /* position: absolute; */
    inset: -8px;
    /* border-radius: 50%; */
    /* opacity: 0.3; */
    /* filter: blur(10px); */
}

@keyframes centerGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.wheel-center:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 
        0 10px 30px #0053ff91,
        0 0 0 4px #ffffff30,
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.wheel-center:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.wheel-center--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   SPIN BUTTON
   ============================================ */

.wheel-btn {
    padding: 18px 60px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff !important;
    background: var(--wheel-primary-gradient);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px #0053ff47;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.wheel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s;
}

.wheel-btn:hover::before {
    left: 100%;
}

.wheel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px #0053ff85;
}

.wheel-btn:active {
    transform: translateY(-1px);
}

.wheel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.wheel-btn__icon {
    margin-right: 12px;
    animation: spinIcon 2s linear infinite;
}

@keyframes spinIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wheel-btn:disabled .wheel-btn__icon {
    animation: none;
}

/* ============================================
   INFO SECTION
   ============================================ */

.wheel-info {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 20px rgba(0, 0, 0, 0.3);
}

.wheel-info__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--wheel-text-primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--wheel-accent-red);
}

.wheel-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.wheel-info__item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #0053ff0f;
    border-radius: 15px;
    border: 1px solid var(--wheel-glass-border);
    transition: all 0.3s ease;
}

.wheel-info__item:hover {
    background: #0053ff21;
    border-color: #0053ff47;
    transform: translateY(-2px);
}

.wheel-info__item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: var(--wheel-primary-gradient);
    color: white;
    margin-right: 15px;
    box-shadow: 0 4px 12px #0053ff47;
}

.wheel-info__item-text {
    flex: 1;
}

.wheel-info__item-label {
    font-size: 12px;
    color: var(--wheel-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.wheel-info__item-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--wheel-text-primary);
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */

.wheel-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.wheel-countdown__item {
    text-align: center;
    padding: 20px 25px;
    background: linear-gradient(145deg, #0053ff24 0%, #0053ff17 100%);
    border: 2px solid var(--wheel-accent-red);
    border-radius: 15px;
    min-width: 90px;
    box-shadow: 0 4px 15px #0053ff17;
    transition: all 0.3s ease;
}

.wheel-countdown__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px #0053ff47;
}

.wheel-countdown__value {
    font-size: 32px;
    font-weight: 900;
    background: var(--wheel-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    animation: countdownPulse 2s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 10px #0053ff70);
    }
    50% { 
        filter: drop-shadow(0 0 20px #0053ffc7);
    }
}

.wheel-countdown__label {
    font-size: 11px;
    color: var(--wheel-text-secondary);
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================
   PRIZES DISPLAY
   ============================================ */

.wheel-prizes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.wheel-prize-card {
    background: var(--wheel-glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--wheel-glass-border);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wheel-prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--wheel-primary-gradient);
    transition: height 0.3s ease;
}

.wheel-prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px #0053ff47;
    border-color: #0053ff70;
}

.wheel-prize-card:hover::before {
    height: 6px;
}

.wheel-prize-card__color {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wheel-prize-card__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--wheel-text-primary);
    margin-bottom: 10px;
}

.wheel-prize-card__desc {
    font-size: 14px;
    color: var(--wheel-text-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.wheel-prize-card__prob {
    display: inline-block;
    padding: 8px 16px;
    background: #0053ff21;
    border: 1px solid var(--wheel-accent-red);
    border-radius: 20px;
    font-size: 13px;
    color: var(--wheel-accent-red);
    font-weight: 700;
}

/* ============================================
   RESULT MODAL
   ============================================ */

.wheel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #181b30;
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: modalFadeIn 0.3s ease;
}

.wheel-modal--active {
    display: flex;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.wheel-modal__content {
    background: linear-gradient(135deg, var(--wheel-card-bg), #181b30);
    border: 2px solid var(--wheel-accent-red);
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(100px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.wheel-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--wheel-text-secondary);
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.wheel-modal__close:hover {
    background: var(--wheel-hover-bg);
    color: var(--wheel-accent-red);
    transform: rotate(90deg);
}

.wheel-modal__icon {
    font-size: 80px;
    margin-bottom: 25px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.wheel-modal__icon--win {
    color: var(--wheel-accent-gold);
    filter: drop-shadow(0 0 30px #0053ffab);
    animation: iconBounce 1s ease infinite, iconFloat 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1) translateY(0px); }
    50% { transform: scale(1.1) translateY(-10px); }
}

.wheel-modal__icon--lose {
    color: #e74c3c;
    filter: drop-shadow(0 0 20px #0053ff70);
}

.wheel-modal__title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.wheel-modal__message {
    font-size: 18px;
    color: var(--wheel-text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.wheel-modal__prize {
    background: var(--wheel-primary-gradient);
    color: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 8px 25px #0053ff5c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.wheel-modal__prize i {
    font-size: 1.6rem;
}

.wheel-modal__btn {
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: var(--wheel-secondary-gradient);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wheel-modal__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px #0053ff70;
}

/* ============================================
   PARTICIPATION HISTORY
   ============================================ */

.wheel-history {
    background: var(--wheel-card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--wheel-glass-border);
}

.wheel-history__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--wheel-text-primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wheel-history__table {
    width: 100%;
    border-collapse: collapse;
}

.wheel-history__table thead {
    background: #0053ff21;
}

.wheel-history__table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 700;
    color: var(--wheel-text-primary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--wheel-accent-red);
}

.wheel-history__table td {
    padding: 18px 15px;
    color: var(--wheel-text-secondary);
    border-bottom: 1px solid var(--wheel-glass-border);
}

.wheel-history__table tbody tr {
    transition: all 0.3s ease;
}

.wheel-history__table tbody tr:hover {
    background: #0053ff0f;
}

.wheel-history__badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.wheel-history__badge--win {
    background: var(--wheel-success-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.wheel-history__badge--lose {
    background: rgba(255, 255, 255, 0.1);
    color: var(--wheel-text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .wheel-wrapper {
        width: 400px;
        height: 400px;
    }
    
    .wheel-wheel {
        width: 360px;
        height: 360px;
    }
    
    .wheel-center {
        width: 80px;
        height: 80px;
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .wheel-container {
        padding: 20px 12px;
    }
    
    .wheel-header {
        padding: 25px 15px;
        margin-bottom: 25px;
    }
    
    .wheel-header__title {
        font-size: 28px;
    }
    
    .wheel-header__description {
        font-size: 14px;
    }
    
    .wheel-card {
        padding: 25px 20px;
    }
    
    .wheel-wrapper {
        width: 380px;
        height: 380px;
    }
    
    .wheel-wheel {
        width: 350px;
        height: 350px;
        border-width: 7px;
    }
    
    .wheel-center {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .wheel-pointer {
        border-left: 24px solid transparent;
        border-right: 24px solid transparent;
        border-top: 48px solid var(--wheel-accent-red);
        top: -18px;
    }
    
    .wheel-pointer::after {
        width: 40px;
        height: 40px;
        left: -20px;
        top: -48px;
    }
    
    .wheel-btn {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .wheel-info__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wheel-countdown {
        gap: 10px;
    }
    
    .wheel-countdown__item {
        padding: 15px 20px;
        min-width: 70px;
    }
    
    .wheel-countdown__value {
        font-size: 24px;
    }
    
    .wheel-countdown__label {
        font-size: 10px;
    }
    
    .wheel-prizes {
        grid-template-columns: 1fr;
    }
    
    .wheel-modal__content {
        padding: 40px 25px;
        margin: 15px;
    }
    
    .wheel-modal__icon {
        font-size: 60px;
    }
    
    .wheel-modal__title {
        font-size: 28px;
    }
    
    .wheel-modal__message {
        font-size: 16px;
    }
    
    .wheel-history__table {
        font-size: 13px;
    }
    
    .wheel-history__table th,
    .wheel-history__table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .wheel-container {
        padding: 15px 8px;
    }
    
    .wheel-header {
        padding: 20px 12px;
        margin-bottom: 20px;
    }
    
    .wheel-header__title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .wheel-header__description {
        font-size: 13px;
    }
    
    .wheel-card {
        /* padding: 20px 15px; */
    }
    
    .wheel-wrapper {
        width: 340px;
        height: 340px;
    }
    
    .wheel-wheel {
        width: 710px;
        height: 710px;
        border-width: 6px;
    }
    
    .wheel-center {
        width: 75px;
        height: 75px;
        font-size: 1.3rem;
    }
    
    .wheel-pointer {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 30px solid var(--wheel-accent-red);
        top: -10px;
    }
    
    .wheel-pointer::after {
        width: 28px;
        height: 28px;
        left: -14px;
        top: -30px;
    }
    
    .wheel-btn {
        padding: 12px 30px;
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .wheel-info {
        padding: 20px 15px;
    }
    
    .wheel-info__title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .wheel-info__item {
        padding: 15px 12px;
    }
    
    .wheel-info__item-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
        margin-right: 12px;
    }
    
    .wheel-info__item-value {
        font-size: 16px;
    }
    
    .wheel-countdown {
        gap: 8px;
    }
    
    .wheel-countdown__item {
        padding: 12px 15px;
        min-width: 60px;
    }
    
    .wheel-countdown__value {
        font-size: 20px;
    }
    
    .wheel-countdown__label {
        font-size: 9px;
    }
    
    .wheel-prize-card {
        padding: 20px 15px;
    }
    
    .wheel-prize-card__color {
        width: 50px;
        height: 50px;
    }
    
    .wheel-prize-card__name {
        font-size: 16px;
    }
    
    .wheel-prize-card__desc {
        font-size: 13px;
    }
    
    .wheel-modal__content {
        padding: 30px 20px;
    }
    
    .wheel-modal__icon {
        font-size: 50px;
        margin-bottom: 20px;
    }
    
    .wheel-modal__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .wheel-modal__message {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .wheel-modal__prize {
        padding: 20px 25px;
        font-size: 1.2rem;
    }
    
    .wheel-modal__btn {
        padding: 14px 40px;
        font-size: 1rem;
    }
    
    .wheel-history {
        padding: 20px 0px;
    }
    
    .wheel-history__title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .wheel-history__table {
        font-size: 12px;
    }
    
    .wheel-history__table th,
    .wheel-history__table td {
        padding: 10px 6px;
    }
    
    .wheel-history__badge {
        padding: 4px 12px;
        font-size: 11px;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.wheel-text-center {
    text-align: center;
}

.wheel-mt-20 {
    margin-top: 20px;
}

.wheel-mb-20 {
    margin-bottom: 20px;
}

.wheel-hidden {
    display: none !important;
}
