@import url('css2');

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

body {
    font-family: 'Permanent Marker', cursive;
    background: linear-gradient(180deg, #162236 0%, #1a2841 50%, #0d1520 100%);
    color: white;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

#snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.header {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
}

.header-logo {
    width: 200px;
    height: auto;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    z-index: 2;
    background-image: url('images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 34, 54, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}

.hero-bg {
    display: none;
}

.hero-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.satna-character {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: -80px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

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

.title-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.main-title {
    width: 100%;
    max-width: 900px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
}

.decoration {
    width: 120px;
    height: auto;
    margin-top: -30px;
    animation: float 2.5s ease-in-out infinite;
}

.contract-section {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contract-label {
    font-size: 1.5rem;
    color: #f6f3e9;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contract-address {
    font-size: 1rem;
    color: #91a79c;
    word-break: break-all;
    font-family: monospace;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.social-links {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.pump-btn {
    display: inline-block;
    background: linear-gradient(135deg, #dd5240 0%, #c73d2d 100%);
    color: white;
    padding: 15px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: lowercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(221, 82, 64, 0.4);
    border: 3px solid #fff;
}

.pump-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(221, 82, 64, 0.6);
}

.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.deco-1, .deco-2 {
    position: absolute;
    width: 150px;
    height: auto;
    opacity: 0.9;
}

.deco-1 {
    top: 10%;
    left: 10px;
    animation: float 4s ease-in-out infinite;
}

.deco-2 {
    top: 20%;
    right: 10px;
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.about {
    position: relative;
    padding: 100px 20px;
    background-image: url('images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 34, 54, 0.7);
    z-index: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-title {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 50px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4));
}

.about-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #f6f3e9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-character {
    width: 100%;
    max-width: 550px;
    height: auto;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.bottom-decorations {
    position: relative;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    z-index: 1;
}

.bottom-deco,
.bottom-deco-2,
.bottom-deco-3 {
    width: 180px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.bottom-deco {
    animation-delay: 0.2s;
}

.bottom-deco-2 {
    animation-delay: 0.5s;
}

.bottom-deco-3 {
    animation-delay: 0.8s;
}

.bottom-title {
    width: 100%;
    max-width: 900px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-logo {
        width: 150px;
    }

    .satna-character {
        max-width: 300px;
    }

    .main-title {
        max-width: 600px;
    }

    .contract-address {
        font-size: 0.7rem;
    }

    .about-text-wrapper {
        grid-template-columns: 1fr;
    }

    .about-text {
        font-size: 1rem;
        padding: 20px;
    }

    .about-character {
        max-width: 300px;
        margin: 0 auto;
    }

    .deco-1, .deco-2 {
        display: none;
    }

    .pump-btn {
        font-size: 1.2rem;
        padding: 12px 40px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        width: 120px;
    }

    .contract-section {
        padding: 15px 20px;
    }

    .social-links img {
        width: 50px;
        height: 50px;
    }

    .about-text {
        font-size: 0.9rem;
    }
}
