:root {
    --primary: #d4af37; /* Gold */
    --primary-hover: #f9d77e; /* Lighter Gold */
    --bg-gradient: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --text-main: #e5e5e5;
    --text-muted: #a0a0a0;
    --card-bg: #121212;
    --header-bg: #000000;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 20px 25px -5px rgba(212, 175, 55, 0.2), 0 10px 10px -5px rgba(212, 175, 55, 0.1);
    --gold-gradient: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: var(--bg-gradient);
    min-height: 100vh;
    line-height: 1.6;
    font-size: 1.1rem;
}

header {
    background-color: var(--header-bg);
    color: var(--primary);
    padding: 4rem 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

nav a {
    color: #a0a0a0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

nav a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

h2 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 4rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h2 i {
    color: var(--primary);
}

ul.columns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    list-style: none;
}

ul.columns li {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

ul.columns li:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

ul.columns li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
}

ul.columns li a i {
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform 0.4s ease;
}

ul.columns li:hover a {
    color: var(--primary);
}

ul.columns li:hover a i {
    transform: scale(1.2) rotate(-10deg);
}

footer {
    background-color: var(--header-bg);
    color: var(--text-muted);
    text-align: center;
    padding: 4rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--primary);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

@media (max-width: 640px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
    
    ul.columns {
        grid-template-columns: 1fr;
    }
}
