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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    overflow-x: hidden;
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1100px;
    padding: 30px;
    color: white;
}

/* LOGO */

.logo {
    width: 260px;
    max-width: 80%;
    margin-bottom: 20px;
}

/* TITLES */

.hero-content h1 {
    font-size: 90px;
    color: #d4af37;
    font-weight: 800;
    margin-bottom: 10px;

    text-shadow:
        0 0 10px rgba(0,0,0,0.8),
        0 0 20px rgba(0,0,0,0.6);
}

.hero-content h2 {
    font-size: 55px;
    margin-bottom: 25px;

    text-shadow:
        0 0 10px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 35px;
}

/* BUTTON ROW */

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* GLOBAL BUTTON */

.btn {
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 40px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-3px);
}

/* BUY BUTTON */

.gold {
    background: #d4af37;
    color: #000;
}

/* TELEGRAM */

.telegram-btn {
    background: #229ED9;
    color: #fff;
}

.telegram-btn:hover {
    box-shadow: 0 0 20px rgba(34,158,217,0.7);
}

/* X */

.x-btn {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
}

.x-btn:hover {
    background: #fff;
    color: #000;
}

/* CONTRACT SECTION */

.contract-box {
    margin-top: 20px;
}

.contract-box h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

/* ADDRESS */

.address-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.address-wrapper input {
    width: 720px;
    max-width: 90%;
    padding: 16px;
    background: rgba(0,0,0,0.75);
    border: 2px solid #d4af37;
    border-radius: 14px;
    color: #fff;
    text-align: center;
    font-size: 16px;
}

.address-wrapper button {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.address-wrapper button:hover {
    transform: translateY(-2px);
}

/* CHART BUTTON */

.chart-btn {
    display: inline-block;
    margin-top: 25px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.chart-btn:hover {
    transform: translateY(-3px);
}

/* SOCIAL LINKS */

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-links a {
    text-decoration: none;
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.25);
    transition: 0.3s;
}

.social-links a:hover {
    border-color: #d4af37;
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content h2 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .logo {
        width: 180px;
    }

    .address-wrapper input {
        width: 100%;
    }
}
