body { 
    font-family: Arial, sans-serif; margin: 20px; color: #333; 
}

h1 { 
    color: #B1851F; 
}

table { 
    width: 100%; border-collapse: collapse; margin-top: 15px; 
}

th, td { 
    border: 1px solid #ccc; padding: 8px; font-size: 14px; text-align: left; 
}

th { 
    background: #000; color: #B1851F; 
}

tr:nth-child() { 
    background: #000000; 
}

.legend {
     margin-top: 15px; font-size: 14px; 
}

.legend span {
     display: inline-block; padding: 6px 12px; margin-right: 10px; color: #fff; border-radius: 4px; 
    }

.main { 
    background-color: #4CAF50;
    
}

.side {
     background-color: #2196F3; 
    }

.optional {
     background-color: #FFC107; color: #000; 
    }

.dlc {
     background-color: #9C27B0; 
}













nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #B1851F;
    text-shadow: 0 0 10px #B1851F;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #E6E6E6;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #B1851F;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B1851F;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}
















* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000000;
    background: linear-gradient(135deg, #252121 0%, #1a1717 50%, #2c2626 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color:#E6E6E6
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.floating-diamond {
    position: fixed;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #B1851F, #d4ab4b);
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
    opacity: 0.7;
}

@keyframes float {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(45deg) translateY(-20px); }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(37, 33, 33, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #B1851F;
}

.header-spacer {
    height: 80px; /* Match your header height */
}

/* Fixed Links Section */
.page-links {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(37, 33, 33, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #B1851F;
    border-radius: 10px;
    padding: 1rem;
    z-index: 999;
    min-width: 180px;
}

.page-links ul {
    list-style: none;
}

.page-links a {
    display: block;
    margin: 10px 0;
    padding: 12px 16px;
    color: #E6E6E6;
    background: rgba(177, 133, 31, 0.1);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background: rgba(177, 133, 31, 0.3);
    border-color: #B1851F;
    color: #B1851F;
    transform: translateX(5px);
}

.page-links a.current {
    background: rgba(177, 133, 31, 0.4);
    border-color: #B1851F;
    color: #B1851F;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #B1851F;
    text-shadow: 0 0 10px #B1851F;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #E6E6E6;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #B1851F;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B1851F;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #B1851F;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(37, 33, 33, 0.7), rgba(37, 33, 33, 0.7)), 
                url('Images/backdound.png');
    background-size: 3px;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #B1851F;
    text-shadow: 0 0 20px #B1851F;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px #B1851F; }
    to { text-shadow: 0 0 30px #B1851F, 0 0 40px #B1851F; }
}

.hero p {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #E6E6E6;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #B1851F, #d4ab4b);
    color: #252121;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(177, 133, 31, 0.3);
}

.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #B1851F;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #B1851F, #d4ab4b);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(230, 230, 230, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(177, 133, 31, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #B1851F;
    box-shadow: 0 10px 30px rgba(177, 133, 31, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #B1851F;
    display: block;
    margin-bottom: 0.5rem;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement {
    background: rgba(230, 230, 230, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(177, 133, 31, 0.3);
    transition: all 0.3s ease;
}

.achievement:hover {
    transform: translateY(-5px);
    border-color: #B1851F;
    box-shadow: 0 10px 30px rgba(177, 133, 31, 0.2);
}

.achievement h3 {
    color: #B1851F;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.quote-section {
    background: rgba(37, 33, 33, 0.8);
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
}

.quote {
    font-size: 2rem;
    font-style: italic;
    color: #B1851F;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.4;
}

.quote-author {
    font-size: 1.2rem;
    color: #E6E6E6;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #B1851F, #d4ab4b);
    transform: translateX(-50%);
}

.timeline-item {
    background: rgba(230, 230, 230, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(177, 133, 31, 0.3);
    position: relative;
    width: calc(50% - 30px);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: calc(50% + 30px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #B1851F;
    border-radius: 50%;
    top: 2rem;
}

.timeline-item:nth-child(odd)::before {
    right: -37.5px;
}

.timeline-item:nth-child(even)::before {
    left: -37.5px;
}

.timeline-year {
    background: linear-gradient(45deg, #B1851F, #d4ab4b);
    color: #252121;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    color: #B1851F;
    margin-bottom: 0.5rem;
}

footer {
    background: rgba(37, 33, 33, 0.9);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #B1851F;
}

footer h3 {
    color: #B1851F;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #E6E6E6;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(177, 133, 31, 0.1);
}

.social-links a:hover {
    color: #B1851F;
    background: rgba(177, 133, 31, 0.2);
    transform: translateY(-3px);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #B1851F, #d4ab4b);
    color: #252121;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(177, 133, 31, 0.3);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item::before {
        left: 12.5px !important;
    }

    .quote {
        font-size: 1.5rem;
    }
}