* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

body {
    font-family: 'Orbitron', monospace;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body::before {
    content: '💀';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50vw;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    animation: rotate3d 20s linear infinite;
    text-shadow: 
        0 0 100px rgba(255, 255, 255, 0.3),
        0 0 200px rgba(255, 255, 255, 0.2);
}

@keyframes rotate3d {
    0% {
        transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotateY(90deg) rotateX(10deg);
    }
    50% {
        transform: translate(-50%, -50%) rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: translate(-50%, -50%) rotateY(270deg) rotateX(-10deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateY(360deg) rotateX(0deg);
    }
}

/* Scanline Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1000;
    animation: scanline 8s linear infinite;
}

.scanlines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.scanlines::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    animation: scanBeam 4s linear infinite;
    pointer-events: none;
}

@keyframes scanBeam {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 10;
}

.skull {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px #ffffff);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 12px;
    margin-bottom: 10px;
    position: relative;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #f0f0f0 50%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientMove 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    will-change: filter;
}

.title-main {
    font-size: 5rem;
    letter-spacing: 15px;
    font-weight: 900;
    display: block;
}

.title-sub {
    font-size: 2.5rem;
    letter-spacing: 8px;
    font-weight: 700;
    opacity: 0.9;
    display: block;
}

h1::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    z-index: 1;
    will-change: background-position;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.glitch {
    animation: glitch 5s infinite;
    position: relative;
    will-change: transform;
}

.glitch::after {
    display: none;
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    }
    91% {
        transform: translate(-3px, 3px);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
    }
    92% {
        transform: translate(3px, -3px);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
    }
    93% {
        transform: translate(-3px, -3px);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
    }
    94% {
        transform: translate(3px, 3px);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
    }
}

.tagline {
    font-size: 1rem;
    color: #cccccc;
    letter-spacing: 2px;
    opacity: 0.8;
    animation: taglineFade 2s ease-in-out infinite;
}

@keyframes taglineFade {
    0%, 100% {
        opacity: 0.6;
        letter-spacing: 2px;
    }
    50% {
        opacity: 1;
        letter-spacing: 3px;
    }
}

/* Container */
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Cheat Grid */
.cheat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1400px;
    justify-items: center;
}

/* Cheat Card */
.cheat-card {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid #ffffff;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 400px;
}

.cheat-card:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.card-header::before {
    content: '⚡';
    position: absolute;
    left: -30px;
    opacity: 0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cheat-card:hover .card-header::before {
    opacity: 1;
    left: -20px;
    animation: sparkle 1s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        filter: brightness(1.5);
    }
}

/* Center buy button */
.buy-btn {
    margin: 0 auto;
    display: block;
}

.cheat-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px #ffffff;
    position: relative;
    display: inline-block;
}

.cheat-card h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
    transition: width 0.4s ease;
}

.cheat-card:hover h2::after {
    width: 100%;
}

.status {
    background: #ffffff;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #ffffff;
    justify-content: center;
    flex-wrap: wrap;
}

.stats span {
    position: relative;
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.stats span:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Download Button */
.download-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.download-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: left 0.3s ease;
    z-index: -1;
}

.download-btn:hover:before {
    left: 0;
}

.download-btn:hover {
    color: #000;
    box-shadow: 0 0 20px #ffffff;
}

.download-btn span {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 20px 30px;
    color: #cccccc;
    font-size: 0.9rem;
    border-top: 1px solid #ffffff;
    position: relative;
    z-index: 10;
    animation: footerGlow 3s ease-in-out infinite;
    width: 100%;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes footerGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
}

.copyright {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #f0f0f0 25%,
        #ffffff 50%,
        #e0e0e0 75%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: copyrightShine 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    padding: 15px 0;
    display: block;
    text-align: center;
    width: 100%;
}

@keyframes copyrightShine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .skull {
        font-size: 60px;
    }
    
    .cheat-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .cheat-card {
        padding: 20px;
    }
    
    .cheat-card h2 {
        font-size: 1.3rem;
    }
    
    .description {
        font-size: 0.85rem;
    }
    
    .stats {
        gap: 10px;
        font-size: 0.8rem;
    }
    
    .stats span {
        padding: 6px 12px;
    }
    
    .buy-btn,
    .download-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    header {
        padding: 40px 15px 30px;
    }
    
    .tagline {
        font-size: 0.85rem;
    }
    
    .container {
        padding: 20px 10px;
    }
    
    body::before,
    body::after {
        font-size: 40vw;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .skull {
        font-size: 50px;
    }
    
    .cheat-card {
        padding: 15px;
    }
    
    .cheat-card h2 {
        font-size: 1.2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .stats span {
        width: 100%;
        text-align: center;
    }
    
    .buy-btn,
    .download-btn {
        padding: 10px;
        font-size: 0.85rem;
    }
}

.price {
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes popupSlide {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Beautiful Buy Button */
.buy-btn {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    overflow: visible !important;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Animated rainbow border */
.buy-btn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(
        45deg,
        #ffffff 0%,
        #f0f0f0 25%,
        #ffffff 50%,
        #e0e0e0 75%,
        #ffffff 100%
    );
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -2;
    animation: gradientShift 3s ease infinite, borderPulse 2s ease-in-out infinite;
    filter: blur(2px);
}

/* Inner glow layer */
.buy-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.buy-btn:hover::after {
    opacity: 1;
    animation: innerGlow 1.5s ease-in-out infinite;
}

/* Diamond icon */
.buy-btn span::before {
    content: '💎';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 1.3rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.buy-btn:hover span::before {
    opacity: 1;
    right: -30px;
    transform: translateY(-50%) scale(1) rotate(360deg);
    animation: gemFloat 2s ease-in-out infinite;
}

/* Lightning bolts on sides */
.buy-btn span::after {
    content: '⚡';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 1.3rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.buy-btn:hover span::after {
    opacity: 1;
    left: -30px;
    transform: translateY(-50%) scale(1) rotate(-360deg);
    animation: boltFlash 1s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes borderPulse {
    0%, 100% {
        filter: blur(2px) brightness(1);
    }
    50% {
        filter: blur(3px) brightness(1.5);
    }
}

@keyframes innerGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes gemFloat {
    0%, 100% {
        transform: translateY(-50%) scale(1) rotate(360deg);
    }
    50% {
        transform: translateY(-60%) scale(1.15) rotate(360deg);
    }
}

@keyframes boltFlash {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    }
    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
    }
}

@keyframes gemSparkle {
    0%, 100% {
        transform: translateY(-50%) scale(1) rotate(0deg);
        filter: brightness(1) drop-shadow(0 0 5px #ffffff);
    }
    25% {
        transform: translateY(-50%) scale(1.3) rotate(90deg);
        filter: brightness(1.5) drop-shadow(0 0 15px #ffffff);
    }
    50% {
        transform: translateY(-50%) scale(1) rotate(180deg);
        filter: brightness(1) drop-shadow(0 0 5px #ffffff);
    }
    75% {
        transform: translateY(-50%) scale(1.3) rotate(270deg);
        filter: brightness(1.5) drop-shadow(0 0 15px #ffffff);
    }
}

.buy-btn span {
    position: relative;
    z-index: 10;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.buy-btn:hover span {
    letter-spacing: 4px;
    transform: scale(1.08);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.4);
}

.buy-btn:active {
    transform: scale(0.95) translateY(2px);
}

.buy-btn:active span {
    letter-spacing: 2px;
}

/* Shine sweep effect */
.buy-btn:before {
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 60%,
        transparent 100%
    );
    background-size: 200% 200%;
    animation: buttonShine 3s ease infinite;
}

@keyframes buttonShine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Glow pulse on hover */
.buy-btn:hover {
    animation: glowPulse 1.5s ease-in-out infinite;
    border-color: rgba(255, 255, 255, 0.3);
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 255, 255, 0.5),
            0 0 60px rgba(255, 255, 255, 0.3),
            0 5px 30px rgba(0, 0, 0, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(255, 255, 255, 0.8),
            0 0 100px rgba(255, 255, 255, 0.5),
            0 10px 50px rgba(0, 0, 0, 0.4),
            inset 0 0 40px rgba(255, 255, 255, 0.2);
        transform: translateY(-5px);
    }
}

/* Ripple effect on click */
.buy-btn:active::before {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    }
}

/* Particle trail effect */
.buy-btn:hover {
    position: relative;
}

.buy-btn:hover::before {
    animation: 
        gradientShift 2s ease infinite, 
        borderPulse 1.5s ease-in-out infinite,
        buttonShine 2s ease infinite;
}

/* Corner accents */
.buy-btn {
    --corner-size: 15px;
}

.buy-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.2) 100%);
}

/* Floating particles around button */
@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}


/* Enhanced popup close button */
.popup-close-btn {
    position: relative;
    overflow: hidden;
}

.popup-close-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.popup-close-btn:hover::before {
    width: 200%;
    height: 200%;
}


/* Price badge special styling */
.price {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1)) !important;
    border: 2px solid rgba(255, 215, 0, 0.4) !important;
    color: #ffd700 !important;
    font-weight: 900 !important;
    font-size: 1rem !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: priceGlow 2s ease-in-out infinite;
}

.price:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2)) !important;
    border-color: rgba(255, 215, 0, 0.6) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4) !important;
}

@keyframes priceGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    }
}

/* Stats icons enhancement */
.stats span::before {
    margin-right: 5px;
}


/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-skull {
    font-size: 8rem;
    margin-bottom: 30px;
    animation: loadingPulse 1.5s ease-in-out infinite, loadingRotate 3s linear infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

@keyframes loadingPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 1));
    }
}

@keyframes loadingRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    background: linear-gradient(90deg, #ffffff, #cccccc, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: textShine 2s linear infinite;
}

@keyframes textShine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.loading-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spinRing 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: #ffffff;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #cccccc;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #999999;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-status {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #999;
    letter-spacing: 2px;
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% {
        content: 'Loading';
    }
    40% {
        content: 'Loading.';
    }
    60% {
        content: 'Loading..';
    }
    80%, 100% {
        content: 'Loading...';
    }
}


/* Android Panel Card Special Styling */
.android-panel-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(20, 20, 20, 0.9));
    border: 2px solid #ff0000;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 0, 0, 0.1);
    animation: androidGlow 2s ease-in-out infinite;
}

@keyframes androidGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 0, 0, 0.4),
            inset 0 0 20px rgba(255, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(255, 0, 0, 0.7),
            inset 0 0 30px rgba(255, 0, 0, 0.2);
    }
}

.android-panel-card:hover {
    border-color: #ff0000;
    box-shadow: 
        0 0 60px rgba(255, 0, 0, 0.8),
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 40px rgba(255, 0, 0, 0.2);
}

.android-panel-card h2 {
    color: #ff0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    animation: androidTitleFlash 1.5s ease-in-out infinite;
}

@keyframes androidTitleFlash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.coming-soon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    animation: comingSoonPulse 1.5s ease-in-out infinite;
}

@keyframes comingSoonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    }
}

/* Mini Countdown in Card */
.countdown-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.countdown-mini-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-mini-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    animation: miniNumberPulse 1s ease-in-out infinite;
}

@keyframes miniNumberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.countdown-mini-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    color: #999;
    margin-top: 2px;
}

.countdown-separator {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #ff0000;
    font-weight: bold;
    animation: separatorBlink 1s ease-in-out infinite;
}

@keyframes separatorBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.notify-btn {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
    border-color: #ff0000;
}

.notify-btn:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.2));
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
}


/* Android Panel Section Below Footer */
.android-panel-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px 30px;
    position: relative;
    z-index: 10;
    background: transparent;
}

.android-panel-section .android-panel-card {
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
}

/* Mobile responsive for android panel */
@media (max-width: 768px) {
    .android-panel-section {
        padding: 30px 15px 20px;
    }
    
    .android-panel-section .android-panel-card {
        width: 95%;
    }
}
