body {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

@keyframes sparkle {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes redSparkle {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.1);
    }
    100% {
        background-position: 200% 50%;
        transform: scale(1);
    }
}

.expired-message {
    color: #ff4444;
    font-size: 1.5em;
    animation: pulse 1s infinite;
}

.feature-list {
    text-align: left;
    margin: 10px;
    font-size: 0.9em;
}

.feature-item {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    font-size: 1.2em;
}

.thunder-text {
    background: linear-gradient(
        90deg, 
        #ff0000 0%, 
        #ff6b6b 25%, 
        #ff0000 50%, 
        #ff6b6b 75%, 
        #ff0000 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 0, 0.5),
        0 0 20px rgba(255, 0, 0, 0.3),
        0 0 30px rgba(255, 0, 0, 0.2);
}

.thunder-text.sparkling {
    animation: redSparkle 0.5s linear;
}

.nvidia-text {
    background: linear-gradient(
        90deg, 
        #76b900 0%, 
        #a8ff00 25%, 
        #76b900 50%, 
        #a8ff00 75%, 
        #76b900 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: sparkle 3s linear infinite;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(118, 185, 0, 0.5),
        0 0 20px rgba(118, 185, 0, 0.3),
        0 0 30px rgba(118, 185, 0, 0.2);
}

.super-card-name {
    background: linear-gradient(
        90deg, 
        #76b900 0%, 
        #a8ff00 25%, 
        #76b900 50%, 
        #a8ff00 75%, 
        #76b900 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: sparkle 3s linear infinite;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(118, 185, 0, 0.5),
        0 0 20px rgba(118, 185, 0, 0.3),
        0 0 30px rgba(118, 185, 0, 0.2);
    cursor: pointer;
}

.bad-card-name {
    background: linear-gradient(
        90deg, 
        #ff0000 0%, 
        #ff6b6b 25%, 
        #ff0000 50%, 
        #ff6b6b 75%, 
        #ff0000 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: sparkle 3s linear infinite;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 0, 0.5),
        0 0 20px rgba(255, 0, 0, 0.3),
        0 0 30px rgba(255, 0, 0, 0.2);
    cursor: pointer;
}

.container {
    max-width: 800px;
    text-align: center;
}

.countdown {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 0 0 10px #00ff00;
}

.benchmark-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    max-width: 750px;
    align-self: center;
}

.benchmark-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
}

.benchmark-source {
    color: #888;
    font-size: 0.8em;
    margin-bottom: 20px;
}

.benchmark-bar {
    display: flex;
    align-items: center;
    height: 40px;
    gap: 10px;
}

.bar-label {
    width: 120px;
    text-align: right;
    font-size: 0.9em;
    white-space: nowrap;
}

.bar-wrapper {
    flex-grow: 1;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    pointer-events: none;
}

.bar {
    background: #4444ff;
    height: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: white;
    font-weight: bold;
    animation: slideIn 1s ease-out;
}

.bad-choice {
    background: #ff4444;
}

.nvidia-gradient {
    background: linear-gradient(90deg, #76b900, #a8ff00);
}

.gpu-comparison {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    flex-wrap: wrap;
}

.evidence-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #444;
    transition: transform 0.2s;
    position: relative;
}

.evidence-link {
    display: inline-block;
    margin-top: 10px;
    color: #76b900;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(118, 185, 0, 0.1);
    transition: all 0.3s ease;
}

.evidence-link:hover {
    background: rgba(118, 185, 0, 0.2);
    transform: scale(1.05);
}

.evidence-source {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
}

.gpu-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    margin: 10px;
    width: 300px;
    position: relative;
    overflow: hidden;
}

.gpu-card.bad {
    border: 2px solid #ff4444;
}

.gpu-card.good {
    border: 2px solid #44ff44;
}

@keyframes launch {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-100vh) rotate(45deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-200vh) rotate(90deg);
        opacity: 0;
    }
}

@keyframes flame {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.rocket {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s;
    position: relative;
}

.rocket.launching {
    animation: launch 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.rocket:hover {
    transform: scale(1.2);
}

.flame {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8em;
    opacity: 0;
    transition: opacity 0.3s;
}

.rocket:hover .flame {
    opacity: 1;
    animation: flame 0.5s infinite;
}

.bottle {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 3em;
    transform: rotate(45deg);
    opacity: 0.3;
}

.achievement {
    background: #2d2d2d;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    border: 1px solid #444;
}

.achievement-unlocked {
    color: #ffd700;
    font-size: 0.8em;
}

.twitch-status {
    background: #6441a5;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

.shake-animation {
    animation: shake 0.5s infinite;
}

.status-updates {
    font-style: italic;
    color: #aaa;
    margin: 20px 0;
}

.highlight {
    animation: pulse 2s infinite;
    color: #ff4444;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.floating-emoji {
    position: fixed;
    font-size: 2em;
    pointer-events: none;
    z-index: 1000;
    animation: floatUp 3s ease-out forwards;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes slideIn {
    from { width: 0; }
}

.crashout-success {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    max-width: 750px;
    align-self: center;
    border: 1px solid #44ff44;
}

.final-quote {
    background: rgba(255, 68, 68, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    border-left: 3px solid #ff4444;
}

.quote-time {
    color: #888;
    font-size: 0.8em;
    margin-bottom: 5px;
}

.quote-text {
    font-style: italic;
    color: #fff;
}

.check-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.check {
    color: #44ff44;
    font-weight: bold;
}

.timestamp {
    color: #888;
    font-size: 0.9em;
}

.rage-quotes {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    max-width: 750px;
    align-self: center;
}

.quote {
    background: rgba(255, 68, 68, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    border-left: 3px solid #ff4444;
}

.info-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    max-width: 750px;
    align-self: center;
}

.info-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.status-banner {
    background: #44ff44;
    color: #000;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.collected-info {
    padding: 20px;
}

.info-notice {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.info-notice p {
    color: #aaa;
    margin: 10px 0 0 0;
}

.info-notice h3 {
    margin: 0;
    color: #fff;
}

.collected-info h3 {
    color: #aaa;
    margin-bottom: 20px;
}

.collected-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collected-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
    color: #888;
}

.info-value {
    color: #fff;
}

.timeline-divider {
    width: 100%;
    max-width: 750px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.divider-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
}

.divider-text {
    color: #888;
    font-size: 0.9em;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-overview {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    max-width: 750px;
    align-self: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 1.5em;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
    margin: 5px 0;
}

.stat-label {
    color: #888;
    font-size: 0.8em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.bingo-achievements-container {
    display: flex;
    gap: 20px;
    max-width: 750px;
    margin: 20px auto;
}

.excuse-bingo, .extended-achievements {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.bingo-grid {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

.bingo-item {
    background: rgba(2, 18, 2, 0.5);
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.bingo-item.checked {
    border: 1px solid rgba(40, 100, 40, 0.5);
}

.check-mark {
    font-size: 1.2em;
}

.checked .check-mark {
    color: #44ff44;
}

.achievement-grid {
    display: grid;
    gap: 15px;
    margin-top: 15px;
}

.achievement-card {
    background: rgba(2, 18, 2, 0.5);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(40, 100, 40, 0.5);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.achievement-card.unlocked {
    opacity: 1;
    background: rgba(68, 255, 68, 0.1);
}

.achievement-icon {
    font-size: 1.5em;
    display: flex;
    align-items: center;
}

.achievement-content h3 {
    margin: 0;
    color: #fff;
    font-size: 1.1em;
}

.achievement-content {
    text-align: center;
}

.achievement-content p {
    margin: 5px 0 0 0;
    color: #888;
    font-size: 0.9em;
}

.phases-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    max-width: 750px;
    align-self: center;
}


.phases-grid {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.phase-card {
    background: rgba(2, 18, 2, 0.5);
    border: 1px solid rgba(40, 100, 40, 0.5);
    padding: 15px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
}

.phase-number {
    width: 30px;
    height: 30px;
    background: rgba(255, 68, 68, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.phase-content {
    display: flex;
    flex-direction: column;
}

.phase-content h3 {
    margin: 0;
    color: #fff;
}

.phase-content p {
    margin: 5px 0;
    color: #888;
    font-style: italic;
}

.phase-time {
    font-size: 0.8em;
    color: #666;
}