* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(50, 50, 50, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 3s infinite;
    box-shadow: 0 0 4px #ffffff, 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

header {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(0, 0, 0, 0.98) 50%, rgba(30, 30, 30, 0.9) 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    z-index: 10;
    box-shadow: 
        0 10px 50px rgba(0, 0, 0, 0.8),
        inset 0 -100px 100px -50px rgba(255, 255, 255, 0.02);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 10%,
        #ffffff 25%, 
        #cccccc 50%, 
        #ffffff 75%,
        rgba(255, 255, 255, 0.3) 90%,
        transparent 100%);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 40px rgba(255, 255, 255, 0.3),
        0 5px 30px rgba(255, 255, 255, 0.2);
    animation: shimmer 3s infinite, pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.02);
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.logo {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    animation: gradientShift 4s ease infinite, float 3s ease-in-out infinite;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tagline {
    font-size: 1.3rem;
    color: #b8b8b8;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    margin-top: 0.3rem;
}

.container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.section {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 50px rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.5s;
}

.section:hover::before {
    left: 100%;
}

.section:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 12px 40px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 80px rgba(255, 255, 255, 0.08),
        inset 0 0 30px rgba(255, 255, 255, 0.03);
}

h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.2);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff 0%, #aaaaaa 50%, #ffffff 100%);
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.5),
        0 2px 10px rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 
            0 0 15px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.5),
            0 2px 10px rgba(255, 255, 255, 0.4);
    }
    50% { 
        box-shadow: 
            0 0 25px rgba(255, 255, 255, 1),
            0 0 50px rgba(255, 255, 255, 0.7),
            0 2px 15px rgba(255, 255, 255, 0.6);
    }
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.leader-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #20201f, #6b6b6b, #333331);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leader-card:hover::before {
    opacity: 1;
}

.leader-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(100, 96, 72, 0.3),
        0 0 40px rgba(0, 0, 0, 0.2);
}

.leader-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    background: linear-gradient(135deg, #2a2a2a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    overflow: hidden;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
}

.leader-card:hover .leader-img {
    border-color: #cccccc;
    box-shadow: 
        0 0 50px rgba(255, 255, 255, 0.5),
        inset 0 0 50px rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.rank-title {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.leader-name {
    font-size: 1.2rem;
    color: #e0e0e0;
    font-weight: 300;
}

.ranks-list {
    list-style: none;
}

.rank-item {
    background: linear-gradient(90deg, rgba(40, 40, 40, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 5px solid #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: -3px 0 15px rgba(255, 255, 255, 0.2);
}

.rank-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent);
    transition: width 0.3s ease;
}

.rank-item:hover::before {
    width: 100%;
}

.rank-item:hover {
    border-left-color: #aaaaaa;
    border-left-width: 6px;
    transform: translateX(10px);
    box-shadow: 
        -5px 0 25px rgba(255, 255, 255, 0.4),
        0 5px 25px rgba(255, 255, 255, 0.2);
}

.rank-number {
    background: linear-gradient(135deg, #ffffff, #aaaaaa);
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.rank-item:hover .rank-number {
    background: linear-gradient(135deg, #cccccc, #ffffff);
    color: #000;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
}

.discord-section {
    text-align: center;
    padding: 3rem 2rem;
}

.discord-text {
    margin: 2rem 0;
    font-size: 1.2rem;
    color: #b8b8b8;
}

.discord-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
    color: #000000;
    padding: 1.5rem 4rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.discord-btn:hover::before {
    width: 300px;
    height: 300px;
}

.discord-btn:hover {
    transform: scale(1.08);
    box-shadow: 
        0 12px 35px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #cccccc 0%, #ffffff 100%);
    color: #000000;
    border-color: rgba(255, 255, 255, 0.6);
}

.discord-note {
    margin-top: 1.5rem;
    color: #666666;
    font-size: 0.95rem;
}

.about-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #d0d0d0;
    text-align: justify;
}

footer {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(0, 0, 0, 0.98) 50%, rgba(30, 30, 30, 0.9) 100%);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 3px solid transparent;
    position: relative;
    z-index: 10;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 10%,
        #ffffff 25%, 
        #cccccc 50%, 
        #ffffff 75%,
        rgba(255, 255, 255, 0.3) 90%,
        transparent 100%);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.6),
        0 -5px 30px rgba(255, 255, 255, 0.2);
    animation: shimmer 3s infinite reverse;
}

.footer-main {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-motto {
    margin-top: 0.8rem;
    font-size: 1rem;
    color: #666666;
    letter-spacing: 2px;
}

.back-button {
    margin-top: 0;
    margin-bottom: 3rem;
    text-align: center;
}

.back-button button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.back-button button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.back-button button:hover::before {
    width: 300px;
    height: 300px;
}

.back-button button:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #cccccc 0%, #ffffff 100%);
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2rem;
    }
    
    .back-button button {
        padding: 12px 30px;
        font-size: 14px;
    }
}