/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 2px solid rgba(255, 107, 157, 0.3);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ff6b9d;
    animation: pulse 2s infinite;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.3), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.social-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #0088cc, #00aaff);
    border-color: #0088cc;
}

.twitter-btn:hover {
    background: linear-gradient(135deg, #1da1f2, #0d8dd6);
    border-color: #1da1f2;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #4ecdc4, #44a8a0);
    border-color: #4ecdc4;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 40px 60px;
    position: relative;
    overflow: hidden;
    background-image: url('benadbackground.png');
    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(15, 12, 41, 0.3);
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    z-index: 1;
}

.hero-left {
    flex: 1;
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.title-line {
    font-size: 24px;
    font-weight: 400;
    color: #a8a8d8;
    animation: fadeIn 1s ease 0.2s backwards;
}

.title-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #ffd93d, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease 0.4s backwards;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
}

@keyframes textGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.title-sub {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    animation: fadeIn 1s ease 0.6s backwards;
}

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

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #c8c8e8;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeIn 1s ease 0.8s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 1s backwards;
}

.cta-btn {
    position: relative;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.cta-btn span {
    position: relative;
    z-index: 2;
}

.btn-glow {
    display: none;
}

.primary-btn {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

.secondary-btn {
    background: linear-gradient(135deg, #4ecdc4, #6ee7df);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

.secondary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.6);
}

.large {
    padding: 22px 50px;
    font-size: 20px;
}

.hero-right {
    flex: 1;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-benad {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ff6b9d;
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.5);
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating {
    animation: bounceBenad 2s ease-in-out infinite;
}

@keyframes bounceBenad {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-monad {
    position: relative;
    width: 600px;
    height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(138, 43, 226, 0.4));
    opacity: 1;
    z-index: 1;
}

.rotating {
    animation: rotating 10s linear infinite;
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease 1.5s backwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background: #ffffff;
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b9d, #4ecdc4);
    margin: 0 auto;
    border-radius: 5px;
    animation: expandWidth 1s ease;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.section-subtitle {
    font-size: 18px;
    color: #c8c8e8;
    margin-top: 20px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(48, 43, 99, 0.5), rgba(36, 36, 62, 0.5));
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease backwards;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }
.about-card:nth-child(4) { animation-delay: 0.4s; }

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

.about-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b9d;
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.3);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffd93d;
}

.about-card p {
    color: #c8c8e8;
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.8), rgba(48, 43, 99, 0.8));
}

.tokenomics-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.tokenomics-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.token-chart {
    position: relative;
    width: 400px;
    height: 400px;
}

.donut-chart {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 157, 0.3));
}

.chart-segment {
    animation: drawSegment 1.5s ease-out forwards;
    stroke-dasharray: 0 502.4;
}

@keyframes drawSegment {
    to {
        stroke-dasharray: inherit;
    }
}

.segment-1 { animation-delay: 0.2s; }
.segment-2 { animation-delay: 0.4s; }
.segment-3 { animation-delay: 0.6s; }
.segment-4 { animation-delay: 0.8s; }

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #302b63, #24243e);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #ff6b9d;
}

.chart-benad-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff6b9d;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.token-stat {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    animation: fadeInRight 0.8s ease backwards;
}

.token-stat:nth-child(1) { animation-delay: 0.2s; }
.token-stat:nth-child(2) { animation-delay: 0.4s; }
.token-stat:nth-child(3) { animation-delay: 0.6s; }
.token-stat:nth-child(4) { animation-delay: 0.8s; }

.token-stat:hover {
    transform: translateX(10px);
    border-color: #ff6b9d;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 18px;
    color: #ffd93d;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 14px;
    color: #a8a8d8;
}

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

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease backwards;
}

.info-card:nth-child(1) { animation-delay: 1s; }
.info-card:nth-child(2) { animation-delay: 1.2s; }
.info-card:nth-child(3) { animation-delay: 1.4s; }

.info-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 20px 50px rgba(78, 205, 196, 0.3);
}

.info-card h4 {
    color: #a8a8d8;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.big-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.info-card span {
    color: #c8c8e8;
    font-size: 14px;
}

.network-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.network-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: rotating 10s linear infinite;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, rgba(36, 36, 62, 0.5), rgba(15, 12, 41, 0.5));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.8s ease backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }

.feature-card:hover {
    transform: translateY(-15px);
    border-color: #ff6b9d;
    box-shadow: 0 25px 60px rgba(255, 107, 157, 0.4);
}

.feature-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.8), rgba(78, 205, 196, 0.8));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.feature-cta {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffd93d;
}

.feature-content p {
    color: #c8c8e8;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    padding: 80px 0;
}

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

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(15, 12, 41, 0.95);
    border-top: 2px solid rgba(255, 107, 157, 0.3);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 24px;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #a8a8d8;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4,
.footer-social h4 {
    color: #ffd93d;
    margin-bottom: 10px;
}

.footer-links a {
    color: #c8c8e8;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.footer-social-btn {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a8a8d8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tokenomics-container {
        grid-template-columns: 1fr;
    }
    
    .token-chart {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .title-main {
        font-size: 50px;
    }
    
    .hero-benad {
        width: 300px;
        height: 300px;
    }
    
    .hero-monad {
        width: 100px;
        height: 100px;
    }
    
    .token-info {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
}
