@font-face {
    font-family: 'MyFonts';
    src: url('../assets/Fonts/heading.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'MyFonts';
    src: url('../assets/Fonts/paragraph.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}


body {
    margin: 0;
    font-family: 'MyFonts', sans-serif;
    background: #121212;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

h1{
    font-size:40px ;
    text-shadow:         
        0 0 8px rgba(138, 180, 248, 0.6),
        0 0 16px rgba(138, 180, 248, 0.4),
        0 0 24px rgba(138, 180, 248, 0.2);
}

.settings-container {
    display: flex;
    width: 800px;
    height: 400px;
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 0 8px rgba(138, 180, 248, 0.6),
        0 0 16px rgba(138, 180, 248, 0.4),
        0 0 24px rgba(138, 180, 248, 0.2);
}

input[type="radio"] {
    display: none;
}

.sidebar {
    width: 200px;
    background: #121212;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.tab-label {
    padding: 15px 25px;
    cursor: pointer;
    color: #b0b0b0;
    font-weight: 600;
    transition: 0.3s;
    text-align: left;
}

.tab-label:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.content {
    flex: 1;
    padding: 30px;
    text-align: left;
}

.tab-panel {
    display: none;
}

/* --- THE LOGIC --- */

/* When a radio is checked, find its matching label and highlight it */
#tab-clicks:checked ~ .sidebar .tab-label[for="tab-clicks"],
#tab-explorer:checked ~ .sidebar .tab-label[for="tab-explorer"],
#tab-easter:checked ~ .sidebar .tab-label[for="tab-easter"] {
    color: #8ab4f8;
    background: rgba(138, 180, 248, 0.1);
}

/* When a radio is checked, find the specific panel and show it */
#tab-clicks:checked ~ .content #clicks-panel,
#tab-explorer:checked ~ .content #explorer-panel,
#tab-easter:checked ~ .content #easter-panel {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

