body{
    font-family:'poppins',sans-serif;
    margin:0;
    background:var(--primary-bg);
    color:var(--text-color);
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    min-height:100vh;

    overflow-x:hidden;

}
/* theres still the issue of the band in responsive design */
/* still with issue with  */
.timer-container{ 
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    gap:5px;


}

.timer-input {
    width :60px;
    padding: 2px 5px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background:var(--bg-color) ;
    color: var(--text-color);

}


.timer-btn{
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    cursor:pointer ;
    transition: none 0.2s ease;


  
}
.timer-btn:hover{
    background: var(--hover-color);
}

.time-display {
    font-family: monospace;
    min-width: 50px;
}
@keyframes pulse {
    0%{transform: scale(1);}
    50%{transform: scale(1.05);}
    100%{transform: scale(1);}
}

.hidden{
    display: none;
}
* {
    box-sizing: border-box;
}
:root{
    --primary-bg:linear-gradient(135deg,#ffb6c1,#ffe4e1);
    --card-bg:#fff;
    --text-color:#333;
    --button-hover:#e95b50;
    --button-bg:#ff6f61;
    --task-bg:#fff0f5;
    --sticker-shadow:rgba(255,182,193,0.7);
    --sticker-active:rgba(255,105,180,0.6);
    --sticker-active-shadow:rgba(255,105,180,0.9);

}
.avatar{
    width:100px;
    height:100px;
    margin: 10px auto;
    border-radius:50%;
    display:block;

}

.mainapp{
  
    max-width:800px;
    margin:20px auto;
    padding:20px;
    border-radius:15px;
    box-shadow :0 4px 15px rgba(0,0,0,0.2);
 
    /* background:var(--card-bg); */
    /* the -- before anything will ensure that themes from diff modes can be added?-like helps take bvalues from diff thymes*/
}


.task {
    background:var(--task-bg);
    padding:10px;
    border-radius:8px;
    transition:transform 0.3s;
    color:var(--text-color);
}

.task:hover{
    transform:scale(1.05);
}

.sticker:hover{
    transform:scale(1.3);
    box-shadow: 0 0 10px var(--sticker-shadow);
    border-radius:70%;

}
.sticker.active{
    background-color:var(--sticker-active);
    box-shadow:var(--sticker-active-shadow);
    border-radius:50%;
}
.app{
    background:var(--card-bg);
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.2);
    padding:20px;
    
    text-align:center;
    width:300px;
}

h1 {
    margin-bottom:15px;
    font-size:24px;
    color:var(--text-color);
    padding:2px;


}
.input-container{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

input[type="text"]{
    flex:1;
    padding:10px;
    border: 2px solid #ddd;
    border-radius:5px;
    background:var(--card-bg);
    color:var(--text-color);
}

button {
    /* background:#ff6f61; */
    background:var(--button-bg);
    border:none;
    color:white ;
    padding:10px 15px;
    font-size:18px;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s ease;

}
button:hover{
     /* background:#e95b50; */
     background:var(--button-hover);
}

.stickers{

    bottom:20px;
    right:20px;
    display:flex;
    flex-direction: wrap;
    background:var(--card-bg);
    padding:10px;
    gap:10px;
    z-index: 100;

    border-radius:10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);

}

.sticker {
    font-size: 24px;
    margin:5px;
    cursor:pointer;
    transition:transform 0.2s,background-color 0.2s,box-shadow 0.2s;
}

.sticker:hover{
    transform:scale(1.2);
}

#mascotContainer{
    position:relative;
    bottom:20px;
    right:20px;
    width:200px;
    height:200px;
    margin:20px auto;



}
#mascot{
    width:100%;
    height:100%;
    transition:opacity 0.3s ease;
    object-fit: contain;
    margin-top: 25px;
}

.aminapp{
    background:var(--card-bg);
    border-radius:15px;
    box-shadow:0 4px 15px rgba(0,0,0,0.2);
    padding:20px;
    width:90%;
    max-width:500px;
    text-align:center;
}


.theme-selector{
    margin:10px 0;
    padding:10px;
    background:rgba(255,255,255,0.3);
    border-radius: 10px;
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    gap:10px;
}


.theme-btn{
    margin:0 5px;
    font-size:20px;
    padding:8px 12px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    transition:0.3s;
    background:white;
}

.theme-btn:active{
    transform:scale(1.2);
}

.theme-btn.active{
    box-shadow:0 0 10px rgba(255,105,180,0.9);
}



.theme-dark{
    --primary-bg:linear-gradient(135deg,#2c3e50,#3498db);
    --card-bg:#1a1a1a;
    --text-color:#423939;
    --button-bg:#3498db;
    --button-hover:#2980b9;
    --task_bg:#1a1a1a;
}

.theme-forest{
    --primary-bg:linear-gradient(135deg,#2c3e50,#27ae60);
    --card-bg:#fff;
    --text-color:#2c3e50;
    --button-bg:#27ae60;
    --button-hover:#219a52;
    --task-bg:#eafaf1;

}
.theme-cyberpunk{
    --primary-bg:linear-gradient(135deg,#ff00ff,#00ffff);
    --card-bg:#0a0a0a;
    --text-color:#00ffff;
    --button-bg:#ff00ff;
    --button-hover:#b700b7;
    --task-bg:#1a1a1a;
    border:2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

/* Music Controls - add this to your styles.css */
.music-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.music-btn {
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
    background: var(--card-bg);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.music-controls button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-color, #fff);
    background: var(--bg-color, rgba(255,255,255, 0.2));
    backdrop-filter: blur(5px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding:0 ;
    transition:all 0.3s ease;



}

.music-controls button:hover {
transform: scale(1.1);
background: var(--button-hover-color, rgba(255,255,255, 0.3));


}
.music-btn:hover {
    transform: scale(1.1);
    background: var(--button-hover);
}

@keyframes sparkle { 
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}