.eyeons{
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
}

.eyeons:last-child{
    margin-bottom: 0rem;
}

.eyeons h4{
    margin-bottom: 0.5rem;
    color: #ffcc00;
    font-size: 1.2rem;
}

.eyeons p{
    font-size: 0.8rem;
    line-height: 1.6;
    color: #ccc;
}

.training-area {
    height: 300px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.training-target {
    width: 60px;
    height: 60px;
    background: #ffcc00;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
    transition: all 0.5s ease;
}

.grid-container {
    margin: 20px 0;
}

.grid-item {
    width: calc(100% / 10);
    padding: 0.25rem;
    display: inline-block;
    text-align: center;
}

.grid-item>div{
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
}

.grid-item>div::before{
    content: '';
    padding-top: 100%;
    display: block;
}

.grid-item>div span{
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    font-size: 1rem;
    color: #fff;
}

.grid-item.active>div {
    background: #ffcc00;
    color: #fff;
}

.controls {
    margin-top: 0.75rem;
}

.controls button {
    background: #ffcc00;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    cursor: pointer;
}

.breathing-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 204, 0, 0.3);
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: breathe 8s infinite ease-in-out;
}

@keyframes breathe {
    0%, 100% { transform: scale(0.8); }
    50% { transform: scale(1.2); }
}

.breathing-text {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 10px;
}

@media screen and (max-width: 1266px) {
    .grid-item{
        width: calc(100% / 6);
    }
}

@media screen and (max-width: 680px) {
    .grid-item{
        width: calc(100% / 4);
    }
}

@media screen and (max-width: 620px) {
    .eyeons {
        margin-bottom: 0.5rem;
        padding: 0.25rem 0.5rem;
    }
    .eyeons h4 {
        margin-bottom: 0;
        color: #ffcc00;
        font-size: 1rem;
    }
    .training-area {
        margin: 10px 0;
    }
    .controls {
        margin-top: 0.75rem;
        margin-bottom: 0.25rem;
    }
}