* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    background: #0a0a0a;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 102, 0.05) 0%, transparent 50%);
    color: #ffffff;
    font-size: 16px;
    min-height: 100vh;
}

h1 {
    font-size: 3.2rem;
    margin: 2rem 0 1rem;
    text-align: center;
    color: #ffffff;
    letter-spacing: 4px;
    font-weight: 900;
}

h2 {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
    text-align: center;
    color: #888888;
    letter-spacing: 1px;
}

a {
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.sound {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 110px;
    height: 120px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 12px;
    border: 2px solid #252525;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sound::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0066, #00ff88, #00ccff);
    opacity: 0.7;
}

.sound:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #444444;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.9),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.sound:active {
    transform: translateY(-2px) scale(0.97);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-color: #666666;
}

.sound:focus-within {
    outline: none;
    transform: translateY(-6px);
}

.small-button {
    width: 90px;
    height: 70px;
    border: none;
    background: linear-gradient(180deg, #202020, #151515);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23444444'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
    border-radius: 10px;
    transition: all 0.15s ease-in-out;
    margin-top: 8px;
    cursor: pointer;
}

.sound:hover .small-button {
    background-color: #252525;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300ff88'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
}

.sound:active .small-button {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff0066'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
}

.small-button:focus {
    outline: none;
}

.name {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 6px;
}

.download {
    display: none;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 30px;
    background: linear-gradient(180deg, #121212, #0d0d0d);
    border-radius: 16px;
    border: 3px solid #1a1a1a;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin: 0 20px 40px;
}

.control {
    display: none;
}

.control button {
    margin-left: 0.5rem;
    font-size: 14px;
    color: #00ff88;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.control button:hover {
    color: #ffffff;
}

#footer {
    bottom: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
    color: #555555;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    letter-spacing: 2px;
}

.woah {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
        margin: 1rem 0;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 1rem;
        margin: 0.5rem 0 1.5rem;
    }

    .sound {
        width: 85px;
        height: 100px;
    }

    .small-button {
        width: 65px;
        height: 55px;
        background-size: 30px;
        border-radius: 6px;
    }

    .name {
        font-size: 9px;
    }

    .control {
        margin: 0.5rem;
        padding: 0.4rem;
    }

    .control button {
        font-size: 12px;
    }

    .flex-container {
        padding: 20px 10px;
        gap: 12px;
        margin: 0 10px 60px;
    }
}