@import url('https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap');
@font-face {
    font-family: 'Rhon Rounded';
    src: url('./rohn-rounded-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rhon Rounded', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #000;
    min-height: 100vh;
}

.header {
    background: linear-gradient(135deg, #087bbf 0%, #065a8c 100%);
    font-family: 'Geneva', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header h1 {
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Racing Sans One', sans-serif;
}

.logo {
    height: 80px;
    width: auto;
}

.container {
    display: flex;
    max-width: 1600px;
    font-family: 'Geneva', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0 auto;
    min-height: calc(100vh - 120px);
}

.sidebar {
    width: 350px;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
    position: sticky;
    top: 0;
    height: calc(100vh - 120px);
}

.sidebar-header {
    background: linear-gradient(135deg, #e1060f 0%, #a80409 100%);
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.nav-item {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
}

.nav-item:hover {
    background: linear-gradient(90deg, #087bbf10 0%, #087bbf20 100%);
    border-left: 4px solid #087bbf;
    padding-left: 16px;
}

.nav-item.active {
    background: linear-gradient(90deg, #087bbf20 0%, #087bbf30 100%);
    border-left: 4px solid #e1060f;
    padding-left: 16px;
    color: #087bbf;
    font-weight: 600;
}

.content-area {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.content-section {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: fadeIn 0.4s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section h2 {
    color: #087bbf;
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #e1060f;
}

.content-section h3 {
    color: #e1060f;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section h4 {
    color: #087bbf;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333;
}

.content-section strong {
    color: #087bbf;
    font-weight: 600;
}

.intro-text {
    background: linear-gradient(135deg, #087bbf10 0%, #e1060f10 100%);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #e1060f;
}

.important-notice {
    background: #e1060f10;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #e1060f;
    font-weight: 600;
}

.brand-logo {
    position: fixed;
    bottom: 20px;
    left: 10px;
    width: 150px;
    z-index: 1000;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .logo {
        height: 60px;
    }

    .brand-logo {
        width: 120px;
        bottom: 10px;
        left: 10px;
    }
}

.wt-container {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .wt-logo-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .wt-logo {
            width: 200px;
            cursor: pointer;
            transition: transform 0.3s ease, filter 0.3s ease;
        }
        
        .wt-logo:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }
        
        .discord-link {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            padding: 8px 16px;
            background: rgba(88, 101, 242, 0.9);
            border-radius: 8px;
            transition: all 0.3s ease;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .discord-link:hover {
            background: rgba(88, 101, 242, 1);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
        }

@media (max-width: 768px) {
    .brand-logo {
        width: 180px;
    }
    
    .wt-logo {
        width: 150px;
    }
    
    .main-header {
        margin-top: 120px;
        padding: 30px 20px;
    }
    
    .main-title {
        font-size: 2rem;
    }

    .container {
        padding: 30px 20px;
    }

    h2 {
        font-size: 1.5rem;
    }
}
.main-header {
            background: linear-gradient(135deg, #087bbf 0%, #065a8c 100%);
            color: white;
            padding: 40px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            margin-top: 50px;
        }
        
        .main-title {
            font-size: 2.6rem;
            font-weight: 700;
            letter-spacing: -1.5px;
            margin: 0;
        }
        
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }