/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid #333333;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.brand-name {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.1;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.25rem;
    color: #888888;
    margin-bottom: 3rem;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px) scale(1.05);
    animation: shake 0.5s ease-in-out;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #333333;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    animation: bounce 0.6s ease-in-out;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

/* Clips Section */
.clips-section {
    background: #0a0a0a;
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.clips-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
}

.placeholder-content {
    text-align: center;
    padding: 3rem;
}

.placeholder-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.placeholder-text {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #888888;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.clip-card {
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #222222;
}

.clip-card:hover {
    transform: translateY(-5px) rotate(2deg);
    border-color: #ff0000;
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
    animation: wobble 0.6s ease-in-out;
}

.clip-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clip-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 15px solid #000000;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.clip-info {
    padding: 1.5rem;
}

.clip-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.clip-description {
    color: #888888;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.clip-duration {
    color: #666666;
    font-size: 0.85rem;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
}

/* About Section */
.about-section {
    background: #000000;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-paragraph {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #111111;
    border-radius: 12px;
    border: 1px solid #222222;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #888888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Token Section */
.token-section {
    background: #0a0a0a;
}

.token-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.token-info {
    text-align: left;
}

.token-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.pump-fun-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #111111;
    border: 1px solid #222222;
    border-radius: 8px;
}

.pump-logo {
    height: 30px;
    width: auto;
}

.pump-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.token-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    background: #111111;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #222222;
    color: #ffffff;
    font-size: 0.95rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.feature:hover {
    border-color: #333333;
}

.token-visual {
    display: flex;
    justify-content: center;
}

.token-card {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    min-width: 250px;
    position: relative;
}

.token-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Space Mono', monospace;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.token-status {
    font-size: 2rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 1.5rem;
    text-transform: lowercase;
    letter-spacing: 0.1em;
}

.ca-section {
    margin-bottom: 1.5rem;
    text-align: center;
}

.ca-label {
    font-size: 0.8rem;
    color: #888888;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.ca-address {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: #ffffff;
    background: #111111;
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    word-break: break-all;
}

.copy-ca-btn {
    background: #333333;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: lowercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-ca-btn:hover {
    background: #555555;
}

.market-cap-section {
    margin-bottom: 1.5rem;
    text-align: center;
}

.market-cap-label {
    font-size: 0.8rem;
    color: #888888;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.market-cap-display {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ff00;
    background: #111111;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #333333;
}

.pump-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #333333;
    margin-top: 1rem;
}

.pump-badge-img {
    height: 16px;
    width: auto;
}

.pump-badge span {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

/* Social Section */
.social-section {
    background: #000000;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.social-link {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
}

.social-link:hover {
    border-color: #333333;
    transform: translateY(-3px);
}

.social-platform {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-handle {
    color: #888888;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #222222;
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: #888888;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-disclaimer {
    color: #666666;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes wobble {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(-5deg); }
    30% { transform: rotate(3deg); }
    45% { transform: rotate(-3deg); }
    60% { transform: rotate(2deg); }
    75% { transform: rotate(-1deg); }
    100% { transform: rotate(0deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.shake {
    animation: shake 0.5s ease-in-out;
}

.wobble {
    animation: wobble 1s ease-in-out;
}

.bounce {
    animation: bounce 1s ease-in-out;
}

.spin {
    animation: spin 1s linear;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.glitch {
    animation: glitch 0.3s ease-in-out;
}

/* Keybind Helper */
.keybind-helper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.keybind-panel {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    transition: all 0.5s ease;
    pointer-events: none;
}

.keybind-panel.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.keybind-panel.hidden {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    pointer-events: none;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.keybind-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.minimize-btn {
    background: #333333;
    color: #ffffff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.minimize-btn:hover {
    background: #ff0000;
    transform: scale(1.1);
}

/* Removed minimized button - just collapses */

/* Fake Warning Popups - Windows Style */
.fake-warning {
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: warningPulse 0.5s ease-in-out;
    font-family: 'MS Sans Serif', 'Helvetica', sans-serif;
    min-width: 300px;
}

.warning-dialog {
    background: #c0c0c0;
    border: 1px solid #808080;
}

.warning-titlebar {
    background: linear-gradient(to bottom, #0a246a, #0a246a);
    color: #ffffff;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
    border-bottom: 1px solid #808080;
}

.warning-title {
    font-size: 11px;
    font-weight: bold;
}

.warning-close {
    background: #c0c0c0;
    color: #000000;
    border: 1px outset #c0c0c0;
    width: 16px;
    height: 14px;
    cursor: pointer;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.warning-close:hover {
    background: #d4d0c8;
}

.warning-close:active {
    border: 1px inset #c0c0c0;
}

.warning-body {
    background: #ffffff;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-left: 1px solid #808080;
    border-right: 1px solid #808080;
}

.warning-icon {
    background: #ff0000;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.warning-text {
    color: #000000;
    font-size: 11px;
    line-height: 1.3;
    flex: 1;
}

.warning-footer {
    background: #c0c0c0;
    padding: 8px;
    text-align: right;
    border-top: 1px solid #808080;
    border-left: 1px solid #808080;
    border-right: 1px solid #808080;
}

.warning-ok {
    background: #c0c0c0;
    color: #000000;
    border: 2px outset #c0c0c0;
    padding: 4px 12px;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    min-width: 60px;
}

.warning-ok:hover {
    background: #d4d0c8;
}

.warning-ok:active {
    border: 2px inset #c0c0c0;
}

@keyframes warningPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes warningClose {
    0% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(0.8) rotate(-5deg); 
        opacity: 0.5; 
    }
    100% { 
        transform: scale(0) rotate(-10deg); 
        opacity: 0; 
    }
}

.fake-warning.closing {
    animation: warningClose 0.3s ease-in-out forwards;
}

.keybind-panel h4 {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: lowercase;
    margin-bottom: 0.8rem;
    text-align: center;
}

.keybind-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.keybind-item:last-child {
    margin-bottom: 0;
}

.key {
    background: #333333;
    color: #ffffff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-weight: 600;
    text-transform: lowercase;
}

.action {
    color: #888888;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: lowercase;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header .container {
        padding: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .clips-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .token-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .token-features {
        grid-template-columns: 1fr;
    }
    
    .pump-fun-branding {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .pump-badge {
        position: static;
        margin-top: 1rem;
        align-self: center;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .logo-img {
        height: 30px;
    }
}

/* Milestone Progress Bar */
.milestone-progress {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.milestone-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.progress-container {
    position: relative;
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff0000, #ff4444);
    width: 0%;
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.milestones {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: space-between;
}

.milestone {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 100px;
    max-width: 120px;
}

.milestone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff0000;
    transform: translateY(-2px);
}

.milestone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.milestone:hover::before {
    left: 100%;
}

.milestone-cap {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 0.25rem;
    text-transform: lowercase;
}

.milestone-challenge {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.65rem;
    color: #ffffff;
    line-height: 1.2;
    text-transform: lowercase;
}

.milestone.completed {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
}

.milestone.completed .milestone-cap {
    color: #ff4444;
}

.milestone.completed .milestone-challenge {
    color: #cccccc;
}

/* Responsive milestone styles */
@media (max-width: 768px) {
    .milestone-progress {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .milestone-title {
        font-size: 1.1rem;
    }
    
    .milestones {
        gap: 0.4rem;
    }
    
    .milestone {
        padding: 0.4rem 0.6rem;
        min-width: 80px;
        max-width: 100px;
    }
    
    .milestone-cap {
        font-size: 0.7rem;
    }
    
    .milestone-challenge {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .milestone-progress {
        padding: 1rem;
    }
    
    .milestone-title {
        font-size: 1rem;
    }
    
    .milestones {
        gap: 0.3rem;
    }
    
    .milestone {
        padding: 0.3rem 0.5rem;
        min-width: 70px;
        max-width: 90px;
    }
    
    .milestone-cap {
        font-size: 0.65rem;
    }
    
    .milestone-challenge {
        font-size: 0.55rem;
    }
}