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

:root {
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-card: #0f0f0f;
    --blood-red: #a00000;
    --blood-bright: #d32f2f;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #888888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    filter: url(#grain);
}

/* Darker overlay for better text readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(160, 0, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(211, 47, 47, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Spider Web */
.spider-web-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    z-index: 999;
    pointer-events: none;
}

.spider-web {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.spider {
    position: absolute;
    top: 80px;
    left: 70px;
    width: 40px;
    height: 40px;
    animation: spiderSwing 4s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes spiderSwing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Blood Canvas */
#bloodCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(160, 0, 0, 0.2);
    z-index: 1000;
}

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

.logo-container {
    position: relative;
}

.logo-image {
    height: 50px;
    width: auto;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(160, 0, 0, 0.4));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.logo-fallback {
    display: none;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--blood-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-item {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blood-bright);
    transition: width 0.3s;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text-white);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.menu-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-burger span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s;
}

/* PAGES */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.page.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO SECTION */
.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(160, 0, 0, 0.2);
    border: 1px solid var(--blood-red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.title-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    line-height: 0.9;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--blood-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-top: 0.5rem;
    letter-spacing: 0.15em;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-text strong {
    color: var(--blood-bright);
    font-weight: 700;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.btn-blood {
    background: var(--blood-red);
    color: var(--text-white);
}

.btn-blood:hover {
    background: var(--blood-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--bg-card);
}

.btn-outline:hover {
    border-color: var(--blood-red);
    background: rgba(160, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* HERO VISUAL */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vampire-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moon {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(160, 0, 0, 0.25) 0%, rgba(211, 47, 47, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: moonPulse 4s ease-in-out infinite;
}

@keyframes moonPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.vampire-image {
    max-width: 350px;
    max-height: 350px;
    width: auto;
    height: auto;
    z-index: 2;
    animation: vampFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(160, 0, 0, 0.6));
}

@keyframes vampFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

.vampire-fallback {
    display: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18rem;
    color: var(--blood-bright);
    z-index: 2;
    animation: vampFloat 3s ease-in-out infinite;
    text-shadow: 0 10px 40px rgba(160, 0, 0, 0.6);
}

/* STATS BAR */
.stats-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--blood-red);
    box-shadow: 0 8px 25px rgba(160, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blood-bright);
}

/* CONTENT CONTAINER */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.page-title {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--blood-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CARDS GRID */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--blood-red);
    box-shadow: 0 10px 30px rgba(160, 0, 0, 0.2);
    transform: translateY(-5px);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.card strong {
    color: var(--blood-bright);
    font-weight: 700;
}

.card-manifesto {
    grid-column: 1 / -1;
    background: rgba(160, 0, 0, 0.1);
    border: 2px solid var(--blood-red);
}

.manifesto-header {
    text-align: center;
    margin-bottom: 2rem;
}

.manifesto-header h3 {
    font-size: 2rem;
    letter-spacing: 0.1em;
}

.manifesto-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.manifesto-main {
    font-size: 1.3rem;
    color: var(--blood-bright);
    text-align: center;
    line-height: 1.6;
}

blockquote {
    border-left: 4px solid var(--blood-red);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--text-white);
    margin-top: 1rem;
}
/* BURNS PAGE */
.burns-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.burns-intro p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.burns-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.burn-stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.burn-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--blood-red);
    box-shadow: 0 10px 30px rgba(160, 0, 0, 0.2);
}

.burn-stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.burn-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--blood-bright);
    margin-bottom: 0.5rem;
}

.burn-stat-card p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.burns-list {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.burns-list-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.burn-entry {
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.burn-entry:hover {
    border-color: var(--blood-red);
    box-shadow: 0 10px 30px rgba(160, 0, 0, 0.2);
}

.burn-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(160, 0, 0, 0.1);
}

.burn-badge {
    background: var(--blood-red);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.burn-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.burn-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.burn-info {
    flex: 1;
}

.burn-amount,
.burn-percentage {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.burn-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.burn-value {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1rem;
}

.burn-link {
    background: var(--blood-red);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.burn-link:hover {
    background: var(--blood-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 0, 0, 0.4);
}

.burns-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(160, 0, 0, 0.1);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.burns-footer p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive for Burns */
@media (max-width: 768px) {
    .burns-stats {
        grid-template-columns: 1fr;
    }

    .burn-details {
        flex-direction: column;
        align-items: stretch;
    }

    .burn-link {
        justify-content: center;
        width: 100%;
    }

    .burn-amount,
    .burn-percentage {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* VAMPED COINS PAGE */
.vamped-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.vamped-intro p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.vamped-counter {
    background: var(--bg-card);
    border: 2px solid var(--blood-red);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 4rem;
    box-shadow: 0 10px 40px rgba(160, 0, 0, 0.3);
}

.counter-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.counter-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--blood-bright);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(211, 47, 47, 0.5);
}

.counter-subtitle {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-style: italic;
}

.vamped-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vamped-coin {
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.vamped-coin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blood-red), var(--blood-bright));
}

.vamped-coin:hover {
    transform: translateY(-5px);
    border-color: var(--blood-red);
    box-shadow: 0 15px 40px rgba(160, 0, 0, 0.3);
}

.vamped-coin-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vamped-coin-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(160, 0, 0, 0.3);
    object-fit: cover;
}

.vamped-coin-info {
    flex: 1;
}

.vamped-coin-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.vamped-coin-ticker {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 600;
}

.vamped-coin-ca {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-dark);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.ca-label-small {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 700;
    text-transform: uppercase;
}

.ca-text-small {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--text-white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ca-copy-small {
    background: var(--blood-red);
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ca-copy-small:hover {
    background: var(--blood-bright);
    transform: scale(1.1);
}

.ca-copy-small svg {
    color: var(--text-white);
}

.vamped-badge {
    display: inline-block;
    background: rgba(160, 0, 0, 0.2);
    border: 1px solid var(--blood-red);
    color: var(--blood-bright);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.no-vamped-yet {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(160, 0, 0, 0.05);
    border: 2px dashed rgba(160, 0, 0, 0.2);
    border-radius: 16px;
}

.no-vamped-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-vamped-yet h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.no-vamped-yet p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.vamped-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(160, 0, 0, 0.1);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.vamped-footer p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.vamped-footer strong {
    color: var(--blood-bright);
}

/* Responsive for Vamped Coins */
@media (max-width: 768px) {
    .counter-value {
        font-size: 4rem;
    }

    .vamped-grid {
        grid-template-columns: 1fr;
    }

    .vamped-coin-header {
        flex-direction: column;
        text-align: center;
    }

    .ca-text-small {
        font-size: 0.7rem;
    }
}

/* RAIDS PAGE */
.raids-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.raids-intro p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.raids-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.raid-stat-card {
    background: var(--bg-card);
    border: 2px solid var(--blood-red);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.raid-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(160, 0, 0, 0.3);
}

.raid-stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.raid-stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--blood-bright);
    margin-bottom: 0.5rem;
}

.raid-stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Submit Raid Form */
.submit-raid-section {
    max-width: 600px;
    margin: 0 auto 4rem;
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 16px;
    padding: 3rem;
}

.submit-raid-section .section-subtitle {
    margin-bottom: 2rem;
}

.raid-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input {
    background: var(--bg-dark);
    border: 1px solid rgba(160, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--blood-red);
}

.form-group small {
    color: var(--text-dark);
    font-size: 0.85rem;
}

.submit-raid-btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

/* Raiders Grid */
.raiders-section {
    margin-bottom: 3rem;
}

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

.raider-card {
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.raider-card:hover {
    transform: translateY(-5px);
    border-color: var(--blood-red);
    box-shadow: 0 10px 30px rgba(160, 0, 0, 0.2);
}

.raider-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.raider-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blood-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
}

.raider-info h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.raider-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.raider-stats {
    margin-bottom: 1rem;
}

.raider-stat {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(160, 0, 0, 0.1);
    border-radius: 8px;
}

.view-tweets-btn {
    color: var(--blood-bright);
    font-weight: 600;
    text-align: center;
}

.no-raiders {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.no-raiders-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

/* ADMIN PAGE */
.admin-login-section {
    max-width: 400px;
    margin: 0 auto;
}

.admin-login-box {
    background: var(--bg-card);
    border: 2px solid var(--blood-red);
    border-radius: 16px;
    padding: 3rem;
}

.admin-login-box h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-user-info {
    color: var(--text-gray);
}

.admin-user-info strong {
    color: var(--text-white);
}

.admin-actions {
    display: flex;
    gap: 1rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.admin-stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.admin-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.admin-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blood-bright);
    margin-bottom: 0.5rem;
}

.admin-stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.admin-raids-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-raid-card {
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.admin-raid-card.paid {
    border-color: rgba(0, 255, 0, 0.3);
}

.admin-raid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(160, 0, 0, 0.1);
}

.admin-raid-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.raid-status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.raid-status-badge.pending {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.raid-status-badge.paid {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.admin-delete-btn {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.admin-delete-btn:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: scale(1.05);
}

.admin-raid-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.admin-raid-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-row {
    display: flex;
    gap: 1rem;
}

.info-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    min-width: 100px;
}

.info-value {
    color: var(--text-white);
    font-size: 0.9rem;
}

.tweet-link,
.tx-link {
    color: var(--blood-bright);
    text-decoration: none;
}

.tweet-link:hover,
.tx-link:hover {
    text-decoration: underline;
}

.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    word-break: break-all;
}

.admin-raid-preview {
    background: rgba(160, 0, 0, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.tweet-preview-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.tweet-preview-img {
    width: 100%;
    border-radius: 8px;
}

.admin-raid-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(160, 0, 0, 0.1);
}

.payment-modal-content {
    background: var(--bg-dark);
    border: 2px solid var(--blood-red);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 2rem;
}

.payment-modal-content .form-group textarea {
    background: var(--bg-dark);
    border: 1px solid rgba(160, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    resize: vertical;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-actions .btn {
    flex: 1;
    justify-content: center;
}

.no-raids-admin {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 968px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-raid-content {
        grid-template-columns: 1fr;
    }

    .admin-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-actions {
        flex-direction: column;
    }
}
/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.tweets-modal-content {
    background: var(--bg-dark);
    border: 2px solid var(--blood-red);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(160, 0, 0, 0.2);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--blood-bright);
}

.tweets-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tweet-card {
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tweet-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.tweet-user-info {
    flex: 1;
}

.tweet-name {
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-badge {
    color: #1d9bf0;
}

.tweet-username {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.tweet-date {
    color: var(--text-dark);
    font-size: 0.85rem;
}

.tweet-text {
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tweet-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tweet-photo {
    width: 100%;
    border-radius: 8px;
}

.tweet-stats {
    display: flex;
    gap: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tweet-payment-status {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tweet-payment-status.pending {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.tweet-payment-status.paid {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.view-on-twitter {
    display: block;
    text-align: center;
    color: var(--blood-bright);
    text-decoration: none;
    font-weight: 600;
}

.view-on-twitter:hover {
    color: var(--blood-bright);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .raids-stats {
        grid-template-columns: 1fr;
    }

    .raiders-grid {
        grid-template-columns: 1fr;
    }

    .modal {
        padding: 1rem;
    }

    .tweets-modal-content {
        padding: 1rem;
    }
}
/* Update the tokenomics grid */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 968px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
}

.token-card {
    background: var(--bg-card);
    border: 1px solid rgba(160, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.token-card:hover {
    transform: translateY(-5px);
    border-color: var(--blood-red);
    box-shadow: 0 10px 30px rgba(160, 0, 0, 0.2);
}

.token-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.token-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blood-bright);
    margin-bottom: 1rem;
}

.token-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CA BOX */
/* CA BOX */
.ca-box {
    background: var(--bg-card);
    border: 2px solid var(--blood-red);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ca-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.ca-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(160, 0, 0, 0.3);
}

.ca-content code {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-white);
    word-break: break-all;
    flex: 1;
}

.ca-copy {
    background: var(--blood-red);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 50px;
    min-height: 50px;
}

.ca-copy:hover {
    background: var(--blood-bright);
    transform: scale(1.1);
}

.ca-copy svg {
    color: var(--text-white);
}

/* Responsive for CA Box */
@media (max-width: 768px) {
    .ca-box {
        padding: 2rem 1.5rem;
    }
    
    .ca-content {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .ca-content code {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .ca-copy {
        width: 100%;
    }
}
/* STEPS */
.steps {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-num {
    width: 70px;
    height: 70px;
    background: var(--blood-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* BUY CTA */
.buy-cta {
    text-align: center;
    padding: 3rem 0;
}

.buy-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.buy-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.social img {
    transition: opacity 0.3s;
}

.social:hover img {
    opacity: 1;
}
/* FOOTER */
.footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(160, 0, 0, 0.2);
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--blood-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social {
    width: 50px;
    height: 50px;
    background: rgba(160, 0, 0, 0.2);
    border: 1px solid rgba(160, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s;
}

.social:hover {
    background: var(--blood-red);
    color: var(--text-white);
    border-color: var(--blood-bright);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(160, 0, 0, 0.1);
    color: var(--text-dark);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .vampire-container {
        width: 350px;
        height: 350px;
    }

    .vampire-image {
        max-width: 280px;
        max-height: 280px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-burger {
        display: flex;
    }

    .title-main {
        font-size: 4rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
    }

    .buy-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .spider-web-container {
        width: 150px;
        height: 150px;
    }

    .spider {
        top: 50px;
        left: 45px;
        width: 25px;
        height: 25px;
    }
}
/* ========== MOBILE RESPONSIVE STYLES ========== */

/* Tablets and small laptops */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 2rem;
    }

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

    .vampire-container {
        width: 350px;
        height: 350px;
    }

    .vampire-image {
        max-width: 280px;
        max-height: 280px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .burns-stats {
        grid-template-columns: 1fr;
    }

    .raids-stats {
        grid-template-columns: 1fr;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(160, 0, 0, 0.2);
        transition: left 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .menu-burger {
        display: flex;
    }

    .menu-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Section */
    .title-main {
        font-size: 4rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .vampire-container {
        width: 280px;
        height: 280px;
    }

    .vampire-image {
        max-width: 220px;
        max-height: 220px;
    }

    .vampire-fallback {
        font-size: 12rem;
    }

    /* Page Title */
    .page-title {
        font-size: 3rem;
    }

    /* Stats Bar */
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat {
        padding: 1.5rem 1rem;
    }

    /* Cards */
    .cards-grid {
        gap: 1.5rem;
    }

    .card {
        padding: 2rem;
    }

    /* Tokenomics */
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .ca-box {
        padding: 2rem 1.5rem;
    }

    .ca-content {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .ca-content code {
        font-size: 0.85rem;
        text-align: center;
    }

    .ca-copy {
        width: 100%;
    }

    /* Steps */
    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-num {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    /* Buy CTA */
    .buy-cta h3 {
        font-size: 2rem;
    }

    .buy-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    /* Spider Web */
    .spider-web-container {
        width: 150px;
        height: 150px;
    }

    .spider {
        top: 50px;
        left: 45px;
        width: 25px;
        height: 25px;
    }

    /* Vamped Coins */
    .vamped-counter {
        padding: 2rem;
    }

    .counter-value {
        font-size: 4rem;
    }

    .vamped-grid {
        grid-template-columns: 1fr;
    }

    .to-vamp-grid {
        grid-template-columns: 1fr;
    }

    .vamp-guy-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .vamp-stat-value {
        font-size: 1.5rem;
    }

    /* Raids */
    .submit-raid-section {
        padding: 2rem 1.5rem;
    }

    .raiders-grid {
        grid-template-columns: 1fr;
    }

    /* Burns */
    .burns-stats {
        gap: 1rem;
    }

    .burn-entry {
        padding: 1.5rem;
    }

    .burn-details {
        flex-direction: column;
        gap: 1rem;
    }

    .burn-link {
        width: 100%;
        justify-content: center;
    }

    /* Admin */
    .admin-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-actions {
        flex-direction: column;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-raid-content {
        grid-template-columns: 1fr;
    }

    .admin-raid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .admin-delete-btn {
        width: 100%;
    }

    /* Modals */
    .modal {
        padding: 1rem;
    }

    .tweets-modal-content,
    .payment-modal-content {
        padding: 1rem;
        max-width: 100%;
    }

    .modal-header h2,
    .modal-header h3 {
        font-size: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .tweet-card {
        padding: 1rem;
    }

    .tweet-header {
        flex-wrap: wrap;
    }

    /* Content Container */
    .content-container {
        padding: 3rem 1rem 4rem;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .title-main {
        font-size: 3rem;
    }

    .title-sub {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .vampire-container {
        width: 240px;
        height: 240px;
    }

    .vampire-image {
        max-width: 180px;
        max-height: 180px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .counter-value {
        font-size: 3rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .ca-content code {
        font-size: 0.75rem;
    }

    .raider-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .tweet-avatar {
        width: 40px;
        height: 40px;
    }

    .admin-stat-value {
        font-size: 2rem;
    }

    .raid-stat-value {
        font-size: 2.5rem;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 3rem 2rem;
    }

    .vampire-container {
        width: 200px;
        height: 200px;
    }

    .page {
        padding-top: 70px;
    }
}

/* Fix for notch/safe areas on iOS */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .content-container {
        padding-left: max(2rem, env(safe-area-inset-left));
        padding-right: max(2rem, env(safe-area-inset-right));
    }
}