/* Global Styles - Used across all pages */

/* Reset and Base Styles */
body, h1, h2, h3, ul, ol, p {
    margin: auto;
    padding: auto;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: black;
    color: #e1e1e1;
    line-height: 1.6;
    animation: backgroundPulse 5s ease-in-out infinite;
    transition: background 0.3s ease;
}

/* Header Styles */
header {
    text-align: center;
    background: linear-gradient(45deg, #380808, #2C0A10, #3f0909,#2a0505);
    color: #fff;
    font-size: 3em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    animation: fadeIn 2s ease-in-out;
    transition: background 0.3s ease;
    border-radius: 40px;
    height: auto;
    width: 100vw;
}

header h1 {
    margin: 0;
}

header ul {
    display: flex;
    justify-content: center;
    list-style: none;
    height: 70px;
}

header ul li {
    margin: 0 20px;
    display: flex;
    align-items: center;
}

header ul li a {
    color: #C0C0C0;
    text-decoration: none;
    font-size: 0.5em;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease, transform 0.3s ease, padding 0.3s ease;
    font-family: 'Georgia', serif;
}

header ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #8B0000;
    left: 0;
    bottom: -3px;
    transition: width 0.3s ease;
}

header ul li a:hover {
    color: #d8d8d8;
    transform: scale(1.1);
}

header ul li a:hover::after {
    width: 100%;
}

/* Navigation Enhancement */
nav ul li a[aria-current="page"] {
    color: #fff !important;
    border-bottom: 2px solid #8B0000;
}

/* Main Layout */
main {
    padding-top: 20px;
    margin-left: 180px;
    margin-right: 180px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideIn 1.5s ease-out;
    transition: 0.3s ease, box-shadow 0.3s ease;
}

main h2 {
    font-size: 1.8em;
    color: #660000;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #8B0000, #660000);
    background-clip: text;
    color: transparent;
    transition: 0.3s ease, color 0.3s ease;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    list-style: none;
    padding: 10px 0;
    margin: 0 0 20px 0;
    font-size: 0.9em;
    color: #ccc;
}

.breadcrumb li {
    margin-right: 10px;
}

.breadcrumb li::after {
    content: "›";
    margin-left: 10px;
    color: #666;
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb a {
    color: #8B0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff4444;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #8B0000;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #7d1111fd;
}

.button1 {
    background-color: #666EC3;
    display: inline-block;
    padding: 10px 20px;
    font-size: 22px;
    height: 30px;
    width: 250px;
    margin-top: 25px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button1:hover {
    background-color: #7c86f7;
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(45deg, #380808, #2C0A10, #3f0909,#2a0505);
    border-top: 3px solid #8B0000;
    font-size: 0.9em;
    color: white;
    border-radius: 20px;
    margin: 0px;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, text-shadow 0.3s;
}

footer a:hover {
    color: #FFD700;
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

footer .socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .socials img {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 5px #FF4500);
    transition: transform 0.3s, filter 0.3s;
}

footer .socials img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px #FFA500);
}

/* Enhanced Footer Links */
.footer-links {
    margin: 10px 0;
    font-size: 0.9em;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B0000;
}

/* Global Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Logo Overlay (used on main page) */
#logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeOutLogo 2s forwards;
}

#logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: scaleUp 2s ease-out;
}

@keyframes fadeOutLogo {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

/* Devil Font */
@font-face {
    font-family: sanctuary;
    src: url(./fonts/MetalMacabre.ttf);
}

/* Global Section Styles */
section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    border: 2px solid #393737;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Global FAQ Styles */
.faq-item {
    margin-bottom: 20px;
    border: 1px solid #4a0000;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(30, 0, 0, 0.5);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: linear-gradient(45deg, #2a0505, #4a0000);
    color: #e1e1e1;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #8B0000;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
    background: linear-gradient(45deg, #4a0000, #6a0000);
    color: #fff;
}

.faq-question.active {
    background: linear-gradient(45deg, #6a0000, #8B0000);
}

.faq-answer {
    display: none;
    padding: 20px;
    background: rgba(40, 0, 0, 0.3);
    color: #ddd;
    font-size: 1.1em;
    line-height: 1.6;
    border-top: 1px solid #4a0000;
}

.faq-answer p {
    margin: 0;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Indicators */
a:focus, button:focus {
    outline: 2px solid #8B0000;
    outline-offset: 2px;
}

/* Mobile Responsiveness - Global */
@media screen and (max-width: 768px) {
    main {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    header {
        font-size: 2em;
    }
    
    header ul {
        font-size: 70%;
        padding: 30px;
    }
    
    header ul li {
        margin: 5px 0;
    }
    
    header ul li a {
        font-size: 0.8em;
        padding-left: 30px;
    }
    
    .button1 {
        width: 200px;
        font-size: 18px;
    }
    
    footer {
        padding: 15px;
    }
    
    .breadcrumb {
        font-size: 0.8em;
        padding-left: 20px;
    }
}

@media screen and (max-width: 480px) {
    .button1 {
        width: 180px;
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    #logo-overlay,
    .socials {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}


















/* Enhanced FAQ Styles - Add to your global styles.css */

/* FAQ Intro */
.faq-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(40, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid #4a0000;
}

.faq-intro p {
    font-size: 1.2em;
    color: #ddd;
    margin: 0;
}

.faq-contact-link {
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.faq-contact-link:hover {
    color: #ff4444;
    text-decoration: underline;
}

/* FAQ Links within answers */
.faq-links {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #4a0000;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.faq-link {
    display: inline-block;
    background: rgba(139, 0, 0, 0.2);
    color: #ff6666;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #8B0000;
}

.faq-link:hover {
    background: rgba(139, 0, 0, 0.4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.3);
}

/* FAQ Navigation */
.faq-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(40, 40, 40, 0.6));
    border-radius: 20px;
    border: 2px solid #4a0000;
}

.faq-nav-item {
    text-align: center;
    padding: 25px;
    background: rgba(40, 0, 0, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #6a0000;
}

.faq-nav-item:hover {
    transform: translateY(-5px);
    background: rgba(60, 0, 0, 0.4);
    border-color: #8B0000;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.2);
}

.faq-nav-item h4 {
    color: #8B0000;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.faq-nav-item p {
    color: #ccc;
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.faq-nav-btn {
    display: inline-block;
    background: linear-gradient(45deg, #8B0000, #a00000);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-nav-btn:hover {
    background: linear-gradient(45deg, #660000, #8B0000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

/* FAQ Quick Actions */
.faq-quick-actions {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(60, 0, 0, 0.2));
    border-radius: 25px;
    border: 2px solid #4a0000;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-quick-actions::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.05), transparent);
    transition: left 0.8s ease;
}

.faq-quick-actions:hover::before {
    left: 100%;
}

.faq-quick-actions:hover {
    border: 2px solid #8B0000;
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.2);
}

.faq-quick-actions h3 {
    color: #8B0000;
    font-size: 2em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.quick-action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-action-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-action-btn.discord {
    background: #7289DA;
    color: white;
}

.quick-action-btn.discord:hover {
    background: #7289DA;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

.quick-action-btn.pricing {
    background: linear-gradient(45deg, #8B0000, #ff4444);
    color: white;
}

.quick-action-btn.pricing:hover {
    background: linear-gradient(45deg, #660000, #cc3333);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

.quick-action-btn.features {
    background: linear-gradient(45deg, #660000, #cc3333);
    color: white;
}

.quick-action-btn.features:hover {
    background: linear-gradient(45deg, #4a0000, #ff6666);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

/* Enhanced FAQ Questions with Icons */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.faq-question::after {
    content: '+';
    position: static;
    transform: none;
    margin-left: auto;
    flex-shrink: 0;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

/* Mobile Responsiveness for Enhanced FAQ */
@media (max-width: 768px) {
    .faq-intro {
        padding: 15px;
    }
    
    .faq-intro p {
        font-size: 1.1em;
    }
    
    .faq-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .faq-link {
        text-align: center;
    }
    
    .faq-navigation {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }
    
    .faq-nav-item {
        padding: 20px;
    }
    
    .faq-nav-item h4 {
        font-size: 1.2em;
    }
    
    .quick-action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-action-btn {
        width: 250px;
        text-align: center;
    }
    
    .faq-quick-actions {
        padding: 25px 20px;
    }
    
    .faq-quick-actions h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .faq-navigation {
        padding: 20px 15px;
    }
    
    .faq-nav-item {
        padding: 15px;
    }
    
    .faq-nav-btn,
    .quick-action-btn {
        font-size: 1em;
        padding: 12px 20px;
    }
    
    .quick-action-btn {
        width: 220px;
    }
}