@font-face {
    font-family: "Doom2016";
    src: url("fonts/Doom2016Right.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

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

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --accent-red: #ff003c;
    --accent-orange: #ff4d00;
    --accent-green: #00ff41;
    --text-white: #ffffff;
    --text-gray: #888888;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 60, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--accent-red);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-red);
}

.connect-wallet {
    background: linear-gradient(45deg, var(--accent-red), var(--accent-orange));
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
}

.connect-wallet:hover {
    transform: scale(1.05);
}


.hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 0, 60, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.glitch {
    position: relative;
    animation: glitch 5s infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    2% { transform: translate(-2px, 2px); }
    4% { transform: translate(-2px, -2px); }
    6% { transform: translate(2px, 2px); }
    8% { transform: translate(2px, -2px); }
    10% { transform: translate(0); }
    100% { transform: translate(0); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-red), var(--accent-orange));
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 60, 0.3);
}

.contract-address {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 0, 60, 0.3);
}

.contract-address code {
    color: var(--accent-green);
    font-family: monospace;
}

.btn-copy {
    background: transparent;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: var(--accent-green);
    color: var(--bg-dark);
}


.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    gap: 15px;
}


.lore-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.lore-image img {
    max-width: 100%;
    border-radius: 10px;
    border: 3px solid var(--accent-red);
}

.lore-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
}

.stat h3 {
    color: var(--accent-green);
    margin-bottom: 10px;
}


.roadmap-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(255, 0, 60, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--accent-red);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
}

.step h3 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.step ul {
    list-style: none;
}

.step li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step li:last-child {
    border-bottom: none;
}


.coinomics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.coin-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.coin-card h3 {
    color: var(--accent-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tax-info {
    text-align: center;
    padding: 20px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 10px;
    border: 1px solid var(--accent-green);
}


.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .links-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.link-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 0, 60, 0.2);
}

.link-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    background: rgba(255, 0, 60, 0.1);
}

.link-card i {
    font-size: 2rem;
    color: var(--accent-red);
}


.meme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .meme-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.meme-item {
    background: var(--bg-card);
    height: 200px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 0, 60, 0.3);
}


.footer {
    background: var(--bg-card);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 60, 0.3);
}

.footer p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.copyright {
    color: var(--accent-green) !important;
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .lore-content,
    .roadmap-steps,
    .coinomics-grid {
        grid-template-columns: 1fr;
    }
    
    .contract-address {
        flex-direction: column;
        text-align: center;
    }
}
.links-buttons{
    display:flex;
    gap:16px;
    margin-top:20px;
    justify-content:center;
}

.doom-link-btn{
    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    background:#0b0b0b;
    border:1px solid #ff1b1b;
    border-radius:8px;

    color:#fff;
    text-decoration:none;
    font-weight:700;
    letter-spacing:1px;

    transition:.15s ease;
}

.doom-link-btn:hover{
    background:#ff1b1b;
    color:#000;
}

.doom-link-btn img{
    width:18px;
    height:18px;
    object-fit:contain;
    filter:brightness(0) invert(1);
}

.doom-link-btn:hover img{
    filter:brightness(0);
}
.links-title{
    text-align:center;
    margin-bottom:18px;

    color:#ff1b1b;
    font-size:22px;
    letter-spacing:3px;
    font-weight:800;

    text-shadow:
        0 0 6px rgba(255,27,27,.6),
        0 0 12px rgba(255,27,27,.4);
}
.doom-link-btn{
    display:flex;
    align-items:center;
    gap:14px;

    padding:18px 32px;   

    background:#0b0b0b;
    border:2px solid #ff1b1b;
    border-radius:10px;

    color:#fff;
    text-decoration:none;
    font-weight:800;
    letter-spacing:1.5px;
    font-size:18px;      

    transition:.15s ease;
}
.doom-link-btn img{
    width:28px;
    height:28px;
    object-fit:contain;
    filter:brightness(0) invert(1);
}
.logo{
  cursor: pointer;
}


.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;

    max-width: 1200px;     
    margin: 32px auto 0;  
    padding: 0 20px;
}




.achievement-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;

    border-radius: 14px;
    border: 1px dashed rgba(255, 0, 60, 0.35);

    background: #050505;

    box-shadow:
        0 0 0 rgba(255,0,60,0);

    transition: 0.25s ease;
}



.achievement-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.achievement-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: #ff003c;
    box-shadow:
        0 0 18px rgba(255,0,60,0.35);
}
.logo-text{
    font-family: "Doom2016", sans-serif;
}

.logo-text{
    font-family: "Doom2016", sans-serif;
    font-size: 28px;          
    letter-spacing: 2px;
}
.hero-title{
    font-family: "Doom2016", sans-serif;
    font-size: 96px;          
    letter-spacing: 4px;
}
.hero-title{
    font-family: "Doom2016", sans-serif;
    font-size: 180px;    
    letter-spacing: 5px;
    line-height: 1;
}

.logo-text{
    font-family: "Doom2016", sans-serif;
    font-size: 52px;     
    letter-spacing: 3px;
    line-height: 1;
}

section h2,
.section-title {
    font-family: "Doom2016", sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

section h2,
.section-title {
    font-family: "Doom2016", sans-serif;
    font-size: 64px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero {
    background: url("images/bg.png") center center / cover no-repeat;
    min-height: 90vh;
    position: relative;
}


.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.45);
    z-index:0;
}

.hero > *{
    position: relative;
    z-index: 1;
}
.hero-subtitle{
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-top: 14px;
    letter-spacing: 1px;

    text-shadow:
        0 0 6px rgba(255,80,0,.9),
        0 0 14px rgba(255,60,0,.8),
        0 0 24px rgba(255,0,0,.6);
}

.rm-step{
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
}

.rm-title{
  font-family: "Doom2016", sans-serif; 
  font-size: 22px;
  letter-spacing: 2px;
  color: #ff003c;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(255,0,60,.35);
}

.rm-text{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.65
);
}

.rm-arrow{
  text-align: center;
  font-family: "Doom2016", sans-serif;
  font-size: 26px;
  color: rgba(255,255,255,.55);
  margin: 10px 0;
}

.roadmap-wrapper{
    max-width: 1100px;
    margin: 0 auto;
}

.roadmap-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rm-title{
    font-size: 28px;
    text-shadow: 0 0 8px rgba(255,0,60,.6);
}


.rm-text{
    font-size: 18px;          
    line-height: 1.6;
    opacity: 0.95;
}

:root{
  --doom-text: #d6d6d6;
  --doom-dim: #a9a9a9;
  --doom-glow: rgba(255, 70, 70, .22);
}


body{
  color: var(--doom-text);
  font-family: "Orbitron", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .35px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}


p, li, span, small, a, button, input, textarea, .rm-text, .contract, .subtext{
  font-weight: 600;
  font-size: 15px;        
  line-height: 1.55;
  color: var(--doom-text);
  text-shadow:
    0 0 10px rgba(0,0,0,.65),
    0 0 14px var(--doom-glow);
}


p, .rm-text, .subtext, li{
  color: var(--doom-dim);
}


a{
  color: #ff2a2a;
  text-decoration: none;
}
a:hover{
  color: #ff6a6a;
  text-shadow: 0 0 14px rgba(255,50,50,.35);
}

.hero-title,
.section-title,
.logo-text,
.rm-title{
  text-transform: none; 
  letter-spacing: normal;
}

p, li, .rm-text{
  background: linear-gradient(180deg, #ffffff 0%, #cfcfcf 45%, #9b9b9b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.section-title,
h2.section-title,
h3,
.who-title,
.lore-title,
.tokenomics-title,
.links-title {
    text-shadow:
        0 0 10px rgba(255, 40, 40, .55),
        0 0 22px rgba(255, 40, 40, .35),
        0 0 38px rgba(255, 0, 0, .25);
}
.section-title,
section h2,
.rm-title {
    text-shadow:
        
        -1px -1px 0 rgba(0,0,0,.65),
         1px -1px 0 rgba(0,0,0,.65),
        -1px  1px 0 rgba(0,0,0,.65),
         1px  1px 0 rgba(0,0,0,.65),

    
        0 0 6px rgba(255,60,60,.25),
        0 0 12px rgba(255,20,20,.12);
}
.hero-title{
    letter-spacing: 6px;
}

.logo-text{
    letter-spacing: 2px;
}

h1, h2, h3,
.section-title,
.rm-title,
.hero-title,
.logo-text {
  text-shadow:
    -1px -1px 0 rgba(0,0,0,.85),
     1px -1px 0 rgba(0,0,0,.85),
    -1px  1px 0 rgba(0,0,0,.85),
     1px  1px 0 rgba(0,0,0,.85),
    0 0 6px rgba(255,40,40,.16),
    0 0 12px rgba(255,40,40,.08) !important;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 4px;
}
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.logo-text,
.rm-title,
.achievement-title,
.lore-title,
.tokenomics-title,
.links-title {
  letter-spacing: 4px !important;
}

.rm-title{
    font-size: 40px;  
    letter-spacing: 0.1em;
}

.rm-text{
    font-size: 17px;   
    line-height: 1.6;
}
.logo-img{
    height: 52px;
    margin-left: 10px;
}
.hero-logo{
    margin-bottom: 20px;
}

.hero-logo img{
    max-width: 720px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px; /* расстояние между пунктами */
}