* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background: #0a0e27;
    color: #00ff41;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.counter {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 14, 39, 0.9);
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.counter-label {
    font-size: 14px;
    font-weight: 600;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.counter-value {
    font-size: 48px;
    font-weight: bold;
    color: #00ff41;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.profile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(10, 14, 39, 0.95);
    padding: 40px 50px;
    border-radius: 8px;
    border: 2px solid #00ff41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
    pointer-events: auto;
}

.profile h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #00ff41;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.profile .location {
    font-size: 16px;
    color: #00cc33;
    margin-bottom: 10px;
    font-weight: 500;
}

.profile .title {
    font-size: 18px;
    color: #00ff41;
    margin-bottom: 25px;
    font-weight: 600;
}

.linkedin-link {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #00ff41;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #00ff41;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.linkedin-link:hover {
    background: #00ff41;
    color: #0a0e27;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

/* DVD Mode Head */
.dvd-head {
    position: fixed;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 5;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.5));
}

/* Confetti */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 100;
    border-radius: 50%;
    opacity: 1;
}

@keyframes firework {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) scale(0.3);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .counter {
        top: 15px;
        padding: 12px 20px;
        border-radius: 6px;
    }
    
    .counter-label {
        font-size: 10px;
        letter-spacing: 1px;
        margin-bottom: 3px;
    }
    
    .counter-value {
        font-size: 28px;
    }
    
    .profile {
        padding: 20px 25px;
        max-width: 95%;
        border-radius: 6px;
    }
    
    .profile h1 {
        font-size: 24px;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    
    .profile .location {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .profile .title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .linkedin-link {
        padding: 8px 16px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .dvd-head {
        width: 100px;
        height: 100px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .counter {
        top: 10px;
        padding: 10px 15px;
    }
    
    .counter-label {
        font-size: 9px;
    }
    
    .counter-value {
        font-size: 24px;
    }
    
    .profile {
        padding: 15px 20px;
        max-width: 95%;
    }
    
    .profile h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .profile .location {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .profile .title {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .linkedin-link {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .dvd-head {
        width: 80px;
        height: 80px;
    }
}
