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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0d0d0d 100%);
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Description */
.description {
    background: rgba(30, 30, 30, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(214, 51, 132, 0.2);
    margin-bottom: 2rem;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 51, 132, 0.3);
}

.description p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.description p:last-child {
    margin-bottom: 0;
}

.description p.technical-note {
    font-family: 'TheSans Typewriter', monospace;
    font-size: 0.95rem;
    background: rgba(40, 40, 40, 0.8);
    padding: 1rem;
    border-left: 4px solid #d63384;
    color: #cccccc;
    margin-top: 1.5rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(214, 51, 132, 0.2);
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.description a {
    color: #d63384;
    text-decoration: none;
    transition: color 0.3s ease;
}

.description a:hover {
    color: #e91e63;
    text-decoration: underline;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Generic Button Styles */
.counter-btn {
    background: transparent;
    color: #ffffff;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0.1rem;
    box-shadow: none;
    line-height: 1;
}

.counter-btn.decrease {
    background: transparent;
    box-shadow: none;
}

.counter-btn.increase {
    background: transparent;
    box-shadow: none;
}

.counter-btn:hover {
    background: rgba(214, 51, 132, 0.2);
    transform: scale(1.2);
    box-shadow: none;
}

.counter-btn.decrease:hover {
    background: rgba(214, 51, 132, 0.2);
    box-shadow: none;
}

.counter-btn.increase:hover {
    background: rgba(214, 51, 132, 0.2);
    box-shadow: none;
}

.counter-btn.small {
    width: auto;
    height: auto;
    font-size: 0.7rem;
}

.counter-value {
    font-weight: 600;
    font-size: 1.2rem;
    color: #ffffff;
    min-width: 30px;
    text-align: center;
}

.counter-value.small {
    font-size: 1rem;
    min-width: 25px;
}

.counter-label {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.counter-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.counter-input {
    width: 60px;
    border: 1px solid rgba(214, 51, 132, 0.5);
    background: rgba(30, 30, 30, 0.8);
    text-align: center;
    font-size: 1rem;
    color: #ffffff;
    padding: 0.3rem;
    border-radius: 5px;
    font-weight: 600;
}

.counter-input.small {
    width: 50px;
    font-size: 0.9rem;
    padding: 0.2rem;
}

.counter-input:focus {
    outline: none;
    background: rgba(214, 51, 132, 0.1);
    border-color: #d63384;
    box-shadow: 0 0 0 2px rgba(214, 51, 132, 0.3);
}

/* Generic Card Styles */
.generic-card {
    background: rgba(30, 30, 30, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(214, 51, 132, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 51, 132, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 3rem;
        transform: rotate(-1deg);
    }
    
    .title::after {
        font-size: 2rem;
        right: -1.5rem;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {    
    .description p {
        font-size: 1rem;
    }
}
