/* ==========================================================================
   #VARIABLES
   ========================================================================== */
:root {
    --primary: #FFD700; /* Gold accent color */
    --primary-hover: #FFC000;
    --bg: #0A0A0A;
    --bg-light: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --accent: #00FF94;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-base: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ==========================================================================
    #RESET & BASE
    ========================================================================== */

/* Disclaimer Popup */
.disclaimer-content {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    padding: 2rem;
}

.disclaimer-content.active {
    display: block;
}

.disclaimer-inner {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
    color: var(--text-primary);
    position: relative;
}

.disclaimer-inner h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.disclaimer-inner p {
    margin: 1rem 0;
}

.disclaimer-inner ul {
    text-align: left;
    padding-left: 1.5rem;
}

.disclaimer-inner h4 {
    text-align: left;
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

.disclaimer-updated {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: right;
}

.disclaimer-text {
    margin-bottom: 2rem;
}

.disclaimer-text h4 {
    color: var(--primary);
    margin: 1.5rem 0;
    font-size: 1.2rem;
}

.disclaimer-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.disclaimer-note {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

/* Reset and base styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Center content styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-content {
    text-align: center;
}

.page-content > * {
    margin: 2rem auto;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
    text-align: center;
    margin: 2rem 0;
}

section p,
section ul,
section ol {
    max-width: 800px;
    margin: 1.5rem auto;
    text-align: left;
}

/* Footer */
.footer {
    text-align: center;
    padding: 4rem 0;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

/* Button styles */
.btn,
.button-group {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.twitter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    margin: 2rem 0;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    gap: 0.5rem;
}

.twitter-button:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    color: var(--primary);
}

.twitter-button i {
    font-size: 1.2rem;
}

/* Stats section */
.stats-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 69, 58, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-base);
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* Stats Section */
.stats-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.how-it-works-content {
    padding: 2rem 0;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #ff4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.step h3 {
    color: #ff4d4d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.stat-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Disclaimer Popup */
.disclaimer-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.disclaimer-content.active {
    display: flex;
}

.disclaimer-inner {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    color: var(--text-primary);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.disclaimer-inner::-webkit-scrollbar {
    width: 6px;
}

.disclaimer-inner::-webkit-scrollbar-track {
    background: transparent;
}

.disclaimer-inner::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-light);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer-bottom {
    text-align: center;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

.cookie-banner-content {
    max-width: 800px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner-message {
    flex: 1;
    margin-right: 1rem;
    color: var(--text-primary);
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
}

/* ==========================================================================
    #BUTTON STYLES
    ========================================================================== */

/* Disclaimer Button */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    font-family: var(--font-base);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin: 1rem 0;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Base Button Styles */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

/* Base Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    gap: 0.5rem;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: var(--font-base);
}

/* Primary Button */
.cta-button.primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Secondary Button */
.cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Swap Button */
.cta-button.swap-button {
    background: linear-gradient(135deg, #FF007A 0%, #FF5F5F 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 122, 0.3);
}

.cta-button.swap-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 122, 0.4);
    color: white;
}

/* Responsive Buttons */
@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 1.5rem auto;
    }
    
    .cta-button {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
}

/* ==========================================================================
   #RUG PULL SECTION
   ========================================================================== */
.rug-pull-section {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 69, 58, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rug-pull-header {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
}

.rug-pull-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.rug-pull-title-wrapper {
    width: 100%;
    text-align: center;
}

.rug-pull-title {
    font-family: var(--font-base);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    padding: 0;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ff453a, #ff9a3e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.rug-pull-subtitle {
    font-family: var(--font-base);
    color: #b0b0b0;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
}

.rug-pull-tokenomics {
    display: flex;
    justify-content: space-between;
    margin: 2.5rem 0;
    gap: 1.5rem;
}

.tokenomics-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.tokenomics-item:hover {
    background: rgba(40, 40, 40, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.tokenomics-percent {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tokenomics-label {
    display: block;
    color: #b0b0b0;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rug-pull-timer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rug-pull-timer .countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.rug-pull-timer .time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding: 0.5rem;
}

.rug-pull-timer .time-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #ff453a, #ff9a3e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 69, 58, 0.2);
}

.rug-pull-timer .time-label {
    font-size: 0.8rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.9;
}

.rug-pull-timer .time-separator {
    color: #ff6b3e;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-5px);
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .rug-pull-tokenomics {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .tokenomics-item {
        flex: 1 1 calc(50% - 1rem);
        min-width: 120px;
    }
}

@media (max-width: 600px) {
    .rug-pull-section {
        padding: 2rem 1.5rem;
        margin: 2rem 1.5rem 0;
    }
    
    .rug-pull-title {
        font-size: 1.6rem;
    }
    
    .rug-pull-subtitle {
        font-size: 1rem;
    }
    
    .tokenomics-percent {
        font-size: 1.6rem;
    }
    
    .tokenomics-label {
        font-size: 0.85rem;
    }
    
    .rug-pull-timer .time-number {
        font-size: 1.8rem;
    }
    
    .rug-pull-timer .time-separator {
        font-size: 1.5rem;
    }
}

/* Remove default margin and padding */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

/* Remove list styles on ul, ol elements */
ul, ol {
    list-style: none;
}

/* Make images easier to work with */
img, picture, video, canvas, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   #TOKENOMICS SECTION
   ========================================================================== */
.tokenomics {
    background: #0a0a0a;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.tokenomics .section-title {
    color: var(--primary);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.tokenomics .section-subtitle {
    color: #b0b0b0;
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

.tokenomics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.tokenomics-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ffaa00);
    opacity: 0;
    transition: all 0.4s ease;
}

.tokenomics-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1), 0 0 25px rgba(255, 215, 0, 0.05);
    z-index: 2;
}

.tokenomics-card:hover::before {
    opacity: 1;
    transform: translateY(-2px);
}

.tokenomics-card.burn {
    border-color: rgba(255, 69, 58, 0.2);
}

.tokenomics-card.burn:hover {
    border-color: rgba(255, 69, 58, 0.4);
    box-shadow: 0 15px 35px rgba(255, 69, 58, 0.1), 0 0 25px rgba(255, 69, 58, 0.05);
}

.tokenomics-card.burn::before {
    background: linear-gradient(90deg, #ff453a, #ff9a3e);
}

.tokenomics-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.tokenomics-card:hover .tokenomics-icon {
    background: var(--primary);
    color: #000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.tokenomics-card.burn .tokenomics-icon {
    background: rgba(255, 69, 58, 0.08);
    color: #ff453a;
    border-color: rgba(255, 69, 58, 0.1);
}

.tokenomics-card.burn:hover .tokenomics-icon {
    background: #ff453a;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 69, 58, 0.3);
}

.tokenomics-percent {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0.5rem 0 0.25rem;
    background: linear-gradient(135deg, var(--primary), #ffcc00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.tokenomics-card.burn .tokenomics-percent {
    background: linear-gradient(135deg, #ff453a, #ff6b3e);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 10px rgba(255, 69, 58, 0.2);
}

.tokenomics-title {
    color: #fff;
    font-size: 1.3rem;
    margin: 0.5rem 0 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

.tokenomics-desc {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tokenomics-note {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.tokenomics-note p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .tokenomics-card {
        min-width: 180px;
        padding: 1.75rem 1.25rem;
    }
    
    .tokenomics-percent {
        font-size: 2rem;
    }
    
    .tokenomics-title {
        font-size: 1.2rem;
    }
    
    .tokenomics-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .tokenomics-grid {
        flex-wrap: wrap;
        gap: 1.25rem;
    }
    
    .tokenomics-card {
        flex: 1 1 calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
    }
}

@media (max-width: 600px) {
    .tokenomics .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .tokenomics .section-subtitle {
        font-size: 1.05rem;
        padding: 0 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .tokenomics-grid {
        padding: 0 1.5rem;
        gap: 1rem;
    }
    
    .tokenomics-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 1.75rem 1.5rem;
    }
    
    .tokenomics-note {
        margin: 0 1.5rem;
        padding: 1.25rem;
    }
    
    .tokenomics-note p {
        font-size: 0.95rem;
    }
}

/* Rug Pull Timer */
.rug-pull-timer {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 69, 58, 0.1);
    border: 1px solid rgba(255, 69, 58, 0.2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.rug-pull-timer::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    padding: 0 1rem;
    font-size: 1.2rem;
}

.rug-pull-timer h3 {
    color: #ff453a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.rug-pull-text {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.rug-pull-timer .countdown-timer {
    justify-content: center;
    margin: 1.5rem 0 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tokenomics {
        padding: 3rem 0;
    }
    
    .allocation-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .allocation-title {
        font-size: 1.3rem;
    }
    
    .allocation-title::before,
    .allocation-title::after {
        width: 30px;
    }
    
    .allocation-title::before {
        left: -30px;
    }
    
    .allocation-title::after {
        right: -30px;
    }
}

/* ==========================================================================
   #FOOTER
   ========================================================================== */
.main-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
    color: #fff;
    padding: 4rem 0 0;
    position: relative;
    z-index: 10;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0 auto;
    max-width: 1200px;
    width: 90%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-heading {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-link:hover::after {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.social-link i {
    width: 24px;
    text-align: center;
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-link:hover i {
    color: #fff;
}

/* Contact Links */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-link i {
    width: 24px;
    text-align: center;
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #fff;
}

.contact-link:hover i {
    color: #fff;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

.copyright {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .social-links,
    .contact-info {
        align-items: center;
    }
    
    .footer-link::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-link:hover::after {
        width: 50%;
    }
}

/* ==========================================================================
   #HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: var(--bg);
}

.hero-banner {
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.8));
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
    z-index: 2;
}

.launch-cta {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-feature-settings: 'tnum' on, 'lnum' on;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 500;
}

.time-separator {
    font-size: 2rem;
    color: var(--primary);
    margin-top: -1rem;
    font-weight: 700;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--primary);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.telegram-button:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.telegram-button i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .launch-cta {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .countdown-timer {
        gap: 0.75rem;
    }
    
    .time-block {
        min-width: 60px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
        margin-top: -0.5rem;
    }
    
    .telegram-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .launch-cta {
        font-size: 1.5rem;
    }
    
    .time-block {
        min-width: 50px;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    .time-separator {
        font-size: 1.2rem;
    }
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
    font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   #VARIABLES
   ========================================================================== */

:root {
    /* Colors */
    --primary: #ffd700;
    --primary-hover: #ffea00;
    --primary-dark: #b3922e;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #b0b0b0;
    --bg: #0a0a0a;
    --bg-dark: #050505;
    --bg-light: #1a1a1a;
    --bg-lighter: #2a2a2a;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-base: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --container-padding: 2rem;
    --section-padding: 6rem 0;
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   #BASE TYPOGRAPHY
   ========================================================================== */

body {
    font-family: var(--font-base);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

/* ==========================================================================
   #LAYOUT UTILITIES
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    box-sizing: border-box;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background-color: var(--bg-dark);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

@supports (width: min(250px, 100%)) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    }
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

/* Spacing Utilities */
.py-sm {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.py-md {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.py-lg {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.py-xl {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.px-sm {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
}

.px-md {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

.content-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #000 !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    color: #000;
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000 !important;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.2);
}

/* Responsive Utilities */
@media (max-width: 768px) {
    :root {
        --font-size-xxxl: 2rem;
        --font-size-xxl: 1.75rem;
        --font-size-xl: 1.5rem;
        --font-size-lg: 1.25rem;
        --font-size-md: 1rem;
        
        --spacing-xxl: 4rem;
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-xxxl: 1.75rem;
        --font-size-xxl: 1.5rem;
        --font-size-xl: 1.25rem;
        --font-size-lg: 1.125rem;
        
        --container-padding: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    :root {
        --section-padding: 5rem 0;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 4rem 0;
        --container-padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 7rem 0 5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: calc(var(--header-height) + 3rem) 0 5rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .hero .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(var(--header-height) + 2rem) 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
        margin: var(--spacing-lg) 0;
    }
    
    .time-block {
        min-width: 4rem;
        padding: 0.5rem 0.25rem;
    }
    
    .time-block span:first-child {
        font-size: 1.75rem;
    }
    
    .time-block .label {
        font-size: 0.75rem;
    }
}

.page-content {
    padding-top: 90px;
}

/* Ensure content is not hidden under fixed nav */
section {
    scroll-margin-top: 90px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #d4af37;
    opacity: 1;
}

.nav-link.active {
    color: #d4af37 !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100% !important;
    background-color: #d4af37;
}

.nav-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.footer-logo span {
    color: var(--gold);
}

.footer-logo:hover {
    color: var(--gold);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: 600;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--gold);
    margin-right: 1rem;
    margin-top: 0.25rem;
    min-width: 20px;
    font-size: 1.1em;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold);
}

.footer .social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer .social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social-link i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.footer .social-link:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

/* Consent Modal */
.consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.consent-modal.active {
    opacity: 1;
    visibility: visible;
}

.consent-content {
    background-color: #121212;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.consent-modal.active .consent-content {
    transform: translateY(0);
    opacity: 1;
}

.consent-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.consent-header i {
    color: var(--gold);
    font-size: 1.5rem;
}

.consent-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
}

.consent-body {
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.consent-body p {
    margin-bottom: 1rem;
}

.consent-body ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.consent-body li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.consent-body li:before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
}

.consent-body a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.consent-body a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.consent-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
}

.consent-footer .btn-primary {
    background-color: #ff4d4d;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(255, 77, 77, 0.3);
}

.consent-footer .btn-primary:hover {
    background-color: #ff3333;
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Body class when modal is open */
.consent-modal-open {
    overflow: hidden;
    padding-right: 15px; /* Prevent content shift when scrollbar disappears */
}

/* Responsive styles */
@media (max-width: 768px) {
    .consent-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .consent-header {
        padding: 1.25rem;
    }
    
    .consent-body {
        padding: 1.25rem;
    }
    
    .consent-footer {
        padding: 1.25rem;
    }
    
    .consent-footer .btn {
        width: 100%;
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .consent-header h3 {
        font-size: 1.25rem;
    }
    
    .consent-body {
        font-size: 0.9375rem;
    }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer .social-links {
        justify-content: center;
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        transform: none;
        padding-left: 0.5rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    /* FAQ Section Responsive */
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-container {
        padding: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1rem;
    }
}

/* ==========================================================================
   #FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 5rem 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section .section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.9);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    background: rgba(30, 30, 30, 0.7);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
}

.faq-question:hover {
    background: rgba(40, 40, 40, 0.8);
}

.faq-question:hover h3 {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(20, 20, 20, 0.6);
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}
