
/* --- MAIN VARIBLES --- */

:root {
  --vulkan-primary: #FC0FC0;
}

body { 
  font-family: 'Open Sans', sans-serif; 
  background-color: var(--bg-dark); 
  color: var(--text-dark); 
  line-height: 1.6; 
}


/* --- COOKIES --- */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #1a1a1b;
    border: 2px solid var(--vulkan-primary);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 40px rgba(252, 15, 192, 0.4);
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; 
}

.modal-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.cookie-enter-btn {
    width: 100%;
    max-width: 250px;
    padding: 16px 0;
    font-size: 1rem;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(252, 15, 192, 0.2);
}

.cookie-enter-btn:hover {
    box-shadow: 0 0 30px rgba(252, 15, 192, 0.5);
    transform: translateY(-3px);
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}

.modal-overlay.active {
    display: flex;
}

/* --- SERVER STATUS/VERSION --- */

.server-status {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(252, 15, 192, 0.2);
    margin-bottom: 20px;
}

.status-pulse {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ecc71;
    animation: pulse-green 2s infinite;
}

.version-badge {
    background: rgba(252, 15, 192, 0.15);
    border: 1px solid var(--vulkan-primary);
    color: var(--vulkan-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-transform: uppercase;
}

/* --- BUTTONS --- */

#modeToggle {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 2000;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(252, 15, 192, 0.4);
    width: auto;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

.vulkanbutton, .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--vulkan-primary);
    color: white !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 10px 0;
    font-size: 0.9rem;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(252, 15, 192, 0.3);
}

.vulkanbutton.secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.vulkanbutton:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
    box-shadow: 0 6px 20px rgba(252, 15, 192, 0.5);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--vulkan-primary);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 15, 192, 0.4);
}

/* --- NAVBAR --- */

header {
    background: #000;
    border-bottom: 3px solid var(--vulkan-primary);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.menu { position: relative; }

.menu-button {
  background-color: var(--vulkan-primary);
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 12px 25px;
  border-radius: 12px; /* Rounded corners from your image */
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 55px;
  background: black;
  min-width: 200px;
  border: 1px solid var(--vulkan-primary);
  border-radius: 5px;
  z-index: 1001;
}

.dropdown.show { display: block; }

.dropdown a {
  display: block;
  padding: 12px;
  color: white;
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid #222;
}

.dropdown a:hover { background: var(--vulkan-primary); }

/* --- RULES PAGE --- */

.content-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.rules-box {
  background: rgba(128, 128, 128, 0.1);
  border: 1px solid var(--vulkan-primary);
  padding: 20px;
  border-radius: 15px;
}

#gdoc-container iframe {
    filter: invert(0) hue-rotate(0deg);
    transition: filter 0.5s ease;
}

#gdoc-container {
    background: black;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
    padding: 5px;
    transition: background 0.5s ease;
}

/* --- HOME PAGE --- */

.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle, rgba(252, 15, 192, 0.05) 0%, rgba(0,0,0,0) 70%);
}

.vulkan-title {
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.pink { color: var(--vulkan-primary); }

.subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-dark);
    opacity: 0.8;
}

.vulkan-title {
    font-size: 4.5rem;
    margin-bottom: 5px;
}

.home-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-section {
    padding: 60px 0;
}

.info-block {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--vulkan-primary);
    border-radius: 8px;
}

.info-block h3 {
    color: var(--vulkan-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-block p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.9;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.infobig-highlight {
    border-right: 4px solid var(--vulkan-primary);
}

.merger-highlight {
    border: 1px solid rgba(252, 15, 192, 0.3);
    border-right: 4px solid var(--vulkan-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 60px 0;
    text-align: center;
}

.feature i {
    font-size: 3rem;
    color: var(--vulkan-primary);
    margin-bottom: 20px;
}

.feature h4 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.final-cta {
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle, rgba(252, 15, 192, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    margin-bottom: 60px;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-cta p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 0;
    margin: 40px 0;
    border-top: 1px solid rgba(252, 15, 192, 0.2);
    border-bottom: 1px solid rgba(252, 15, 192, 0.2);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vulkan-primary);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.video-container {
    margin: 60px 0;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 70vh; 
    min-height: 500px;
    background: url('images/newvulkanbanner.png') no-repeat center center;
    background-size: cover;
    border-radius: 20px; 
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 40px;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(17, 20, 27, 0.8));
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-showcase {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
}

.main-banner {
    width: 100%;
    max-width: 1100px; 
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(252, 15, 192, 0.2); 
    margin-bottom: 30px;
}

.hero-text-area {
    padding: 0 20px;
}

.motto {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

body {
    background-color: #11141b;
}

.banner-relative {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-image {
    width: 100%;
    display: block; /* Removes bottom gap */
    height: auto;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; 
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    padding-bottom: 40px;
}

.banner-content {
    text-align: center;
    z-index: 2;
}

.banner-motto {
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    margin-bottom: 20px;
}

.banner-btns .cta-button {
    margin: 0 10px;
}

/* --- JOINING PAGE --- */

.joining-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.joining-header {
    text-align: center;
    margin-bottom: 50px;
}

.joining-header h1 {
    font-size: 3rem;
    color: var(--vulkan-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.joining-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

.preflight-checklist {
    margin-bottom: 50px;
}

.checklist-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 15, 192, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.checklist-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pink { color: var(--vulkan-primary); }

.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eee;
    font-size: 0.95rem;
}

.check-item i {
    color: var(--vulkan-primary);
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--vulkan-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    border-color: var(--vulkan-primary);
    background: rgba(252, 15, 192, 0.02);
}

.active-step {
    border: 1px solid var(--vulkan-primary);
    box-shadow: 0 0 20px rgba(252, 15, 192, 0.1);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--vulkan-primary);
    min-width: 80px;
    text-align: center;
}

.step-tag {
    font-family: 'Courier New', monospace;
    color: var(--vulkan-primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 5px;
}

.step-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.step-info p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

code {
    background: #000;
    color: var(--vulkan-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.copy-command-container {
    display: flex;
    align-items: center;
    background: #000;
    border: 1px solid rgba(252, 15, 192, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    margin: 20px 0;
    gap: 15px;
}

.command-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cmd-prefix {
    font-size: 0.7rem;
    color: var(--vulkan-primary);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 2px;
}

.copy-command-container code {
    background: transparent;
    color: #00f2ff; 
    padding: 0;
    font-size: 0.95rem;
}

.copy-btn {
    background: rgba(252, 15, 192, 0.1);
    border: 1px solid var(--vulkan-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-btn:hover {
    background: var(--vulkan-primary);
}

.copy-btn.success {
    background: #28a745;
    border-color: #28a745;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.legal-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #ccc;
    font-size: 0.95rem;
}

.legal-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--vulkan-primary);
    font-weight: bold;
}

.legal-list strong {
    color: var(--vulkan-primary);
    font-weight: 600;
}

.joining-header h1 {
    text-shadow: 0 0 30px rgba(252, 15, 192, 0.4);
}

.step-card .vulkanbutton {
    opacity: 0;
    transform: translateY(10px); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none; 
}

.step-card:hover .vulkanbutton {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; 
}

.step-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.step-card:hover {
    transform: translateX(10px);
    border-color: var(--vulkan-primary);
    box-shadow: 0 5px 25px rgba(252, 15, 192, 0.1);
}

/* --- SUPPORT US PAGE --- */

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.support-btn-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 15, 192, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
}

.support-btn-card:hover {
    transform: translateY(-5px);
    border-color: #FC0FC0;
    background: rgba(252, 15, 192, 0.03);
}

.support-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.donate-btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    color: white !important;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s;
}

.paypal-bg { background: #009cde; }
.tebex-bg { background: #0064d6; }
.donate-btn.paypal { background: #0070ba; }
.donate-btn.tebex { background: #004a99; }

.donate-btn:hover {
    filter: brightness(1.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- FAQ PAGE --- */

.copy-command-container code {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid var(--vulkan-primary);
    width: 100%;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
    color: #00f2ff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.faq-cat-title {
    font-size: 1.2rem;
    color: var(--vulkan-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 3px solid var(--vulkan-primary);
}

.faq-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.faq-box:hover {
    background: rgba(252, 15, 192, 0.03);
    border-color: rgba(252, 15, 192, 0.3);
    transform: translateX(5px);
}

.faq-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 0;
}

.faq-box code {
    display: block;
    background: #000;
    padding: 8px;
    border-radius: 5px;
    font-family: monospace;
    color: #00f2ff;
    font-size: 0.9rem;
}

.mini-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: var(--vulkan-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.2s;
}

.mini-btn:hover {
    filter: brightness(1.2);
}

.help-highlight {
    border: 1px dashed var(--vulkan-primary);
    background: rgba(252, 15, 192, 0.05);
}

.faq-search-wrapper {
    position: relative;
    margin-bottom: 30px;
    max-width: 600px;
}

.faq-search-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vulkan-primary);
}

#faqSearch {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 15, 192, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

#faqSearch:focus {
    border-color: var(--vulkan-primary);
    background: rgba(252, 15, 192, 0.08);
    box-shadow: 0 0 15px rgba(252, 15, 192, 0.1);
}

/* Keybinds */
.keybind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.key-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

kbd {
    background: var(--vulkan-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    min-width: 35px;
    text-align: center;
    box-shadow: 0 3px 0 rgba(0,0,0,0.3);
}

/* --- PARTNER PAGE --- */

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.partner-avatar {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(252, 15, 192, 0.2);
}

.partner-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(252, 15, 192, 0.1);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--vulkan-primary);
    box-shadow: 0 10px 30px rgba(252, 15, 192, 0.1);
}

.partner-card p {
    font-size: 20px; 
    margin-bottom: 15px;
    font-weight: bold;
}

.partner-content {
    padding: 30px 20px;
    text-align: center;
}

.partner-content h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.widget-wrapper iframe {
    display: block;
    max-width: 100%;
}

.widget-wrapper {
    border-radius: 10px;
    overflow: hidden;
    background: #232428;
    border: 1px solid rgba(0,0,0,0.2);
}

/* --- STAFF PAGE --- */

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.rank-title {
    margin: 50px 0 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(252, 15, 192, 0.2);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
}

.rank-title-small {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--vulkan-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.rank-tag {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 1px;
}

.dept-group {
    margin-bottom: 50px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.staff-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.staff-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 200px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.staff-card h3 {
    margin: 5px 0;
    font-size: 1rem;
}

.staff-card:hover {
    transform: translateY(-5px);
    background: rgba(252, 15, 192, 0.05);
    border-color: var(--vulkan-primary);
}

.rank-owner { border-top: 4px solid #FC0FC0; } 
.rank-manager { border-top: 4px solid #f06292; } /* Server Manager */
.rank-heads { border-top: 4px solid #607d8b; }   /* Dept Head */

.rank-discord { border-top: 4px solid #9c27b0; } /* Discord */
.rank-fivem { border-top: 4px solid #3f51b5; }   /* FiveM */
.rank-dev { border-top: 4px solid #ff9800; }     /* Dev */
.rank-design { border-top: 4px solid #cddc39; }  /* Design */
.rank-qc { border-top: 4px solid #81d4fa; }      /* QC */
.rank-event { border-top: 4px solid #ff5252; }   /* Event */
.rank-promo { border-top: 4px solid #00e5ff; }   /* Promo */

/* --- FOOTER --- */

footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(252, 15, 192, 0.2);
    margin-top: 50px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    width: 100%;
    font-size: 1.5rem;
}

.social-icons a {
    color: #ffffff; 
    font-size: 26px;
    text-decoration: none;
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px; 
    height: 45px;
}

.vulkan-footer {
    background: #0a0c10;
    padding: 60px 20px 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(252, 15, 192, 0.2);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-motto {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #555;
}

.footer-links h4, .footer-socials h4 {
    color: var(--vulkan-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--vulkan-primary); }

.social-icons a:hover {
    color: var(--vulkan-primary) !important;
    transform: translateY(-5px);
}

/* --- ANIMATIONS --- */

@keyframes vulkanFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* --- THEME SUPPORT --- */

html[theme="LIGHT"] body {
    background-color: #ffffff !important;
    color: #000000 !important;
}

html[theme="DARK"] body {
    background-color: #11141b !important;
    color: #f0f0f0 !important;
}

html[theme="DARK"] #gdoc-container iframe {
    filter: invert(0.9) hue-rotate(180deg);
    border: 2px solid var(--vulkan-primary);
}

html[theme="LIGHT"] .info-block {
    background: rgba(0, 0, 0, 0.05);
}

/* --- MOBILE SUPPORT --- */

@media screen and (max-width: 768px) {
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    .hero-banner {
        height: 50vh;
        border-radius: 10px;
    }
    .vulkan-title {
        font-size: 2.5rem;
    }
    .banner-motto {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .banner-btns .cta-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .banner-overlay {
        padding-bottom: 20px;
    }

    .joining-container, .steps-timeline, .footer-content {
        flex-direction: column !important;
        padding: 20px;
    }

    .vulkanbutton, .menu-button {
        width: 100%; 
        padding: 15px;
        font-size: 1.1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        margin-bottom: 20px;
        width: 100% !important;
    }
    
    .step-icon {
        min-width: auto;
        margin-bottom: 15px;
    }

    .step-card .vulkanbutton {
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }

    .menu {
        position: relative; 
    }

    .dropdown {
        right: 0;          
        left: auto;         
        width: 80vw;        
        max-width: 300px;   
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.5); 
        border-radius: 10px 0 10px 10px; 
    }

    .dropdown a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }
}

html {
    scroll-behavior: smooth;
}