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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.container {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3)
}

h1 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.5rem
}

.counter-display {
    font-size: 6rem;
    font-weight: 800;
    color: #fa709a;
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1)
}

.buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center
}

.btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif
}

.decrease {
    background: #f44336;
    color: white
}

.increase {
    background: #4caf50;
    color: white
}

.reset {
    background: #2196f3;
    color: white
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3)
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 12px 24px;
    background: rgba(250, 112, 154, 0.2);
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease
}

.back-link:hover {
    background: rgba(250, 112, 154, 0.3);
    transform: translateX(-5px)
}