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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1a2e 50%, #0a0e1a 100%);
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Airdrop Section in Left Content */
.airdrop-section {
    position: relative;
}

.airdrop-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.5));
}

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

.airdrop-section .main-headline {
    margin-bottom: 1.5rem;
}

.airdrop-section .description {
    margin-bottom: 2rem;
}

.airdrop-section .description strong {
    color: #00d4aa;
    font-weight: 600;
}

/* Connect Wallet Button */
.btn-connect-wallet {
    background: linear-gradient(135deg, #00d4aa, #00a8ff);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
    margin-top: 1rem;
}

.btn-connect-wallet:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.5);
    background: linear-gradient(135deg, #00e6c0, #00b8ff);
}

.wallet-icon {
    font-size: 1.3rem;
    display: inline-block;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
    filter: brightness(1.1);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #00d4aa;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.language-icon:hover {
    background: rgba(0, 212, 170, 0.2);
}

.btn-get-started {
    background: linear-gradient(135deg, #00d4aa, #00a8ff);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 170, 0.3);
}

/* Main Content */
.main-content {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

/* Left Section */
.left-section {
    flex: 0 0 60%;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1a2e 50%, #0a0e1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.left-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 168, 255, 0.05) 100%);
    pointer-events: none;
}

.swiss-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.swiss-flag {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    border-radius: 2px;
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.highlight {
    color: #00d4aa;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
}

.description strong {
    color: #00d4aa;
    font-weight: 600;
}

/* Right Section */
.right-section {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.landscape-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1a2e 50%, #0a0e1a 100%);
    position: relative;
}

.landscape-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 168, 255, 0.05) 100%);
    pointer-events: none;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    height: 80%;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 20px;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    display: block;
}

/* Additional Content Section */
.additional-content {
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1a2e 50%, #0a0e1a 100%);
    padding: 4rem 2rem;
    position: relative;
}

.additional-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 168, 255, 0.05) 100%);
    pointer-events: none;
}

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

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.content-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.content-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-5px);
}

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

.content-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.content-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1a2e 50%, #0a0e1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 168, 255, 0.05) 100%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
    filter: brightness(1.1);
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #00d4aa;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: #00d4aa;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
    }
    
    .left-section {
        flex: 1;
        padding: 3rem 2rem;
        width: 100%;
    }
    
    .right-section {
        flex: 1;
        min-height: 500px;
        width: 100%;
        position: relative;
    }
    
    .main-headline {
        font-size: 2.5rem;
    }

    .video-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 85%;
        max-width: 500px;
        height: auto;
        min-height: 400px;
        margin: 2rem auto;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

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

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .nav-links {
        display: none;
    }

    .btn-get-started {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .language-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .main-content {
        padding-top: 70px;
    }

    .left-section {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .swiss-badge {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .swiss-flag {
        width: 20px;
        height: 20px;
    }
    
    .main-headline {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .airdrop-icon-large {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .airdrop-section {
        margin-bottom: 2rem;
    }

    .btn-connect-wallet {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        margin-top: 0.5rem;
        margin-bottom: 2rem;
    }

    .right-section {
        min-height: 400px;
        width: 100%;
        padding: 1rem 0 2rem;
    }

    .video-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        max-width: 100%;
        height: auto;
        min-height: 300px;
        max-height: 500px;
        margin: 0 auto;
        padding: 12px;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .additional-content {
        padding: 2.5rem 1.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-item {
        padding: 1.5rem;
    }

    .content-icon {
        font-size: 2.5rem;
    }

    .content-item h3 {
        font-size: 1.25rem;
    }

    .content-item p {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 1.5rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 1.5rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .airdrop-icon-large {
        font-size: 2rem;
    }

    .btn-connect-wallet {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .video-container {
        width: 95%;
        min-height: 250px;
        max-height: 400px;
        padding: 10px;
    }

    .left-section {
        padding: 1.5rem 1rem;
    }

    .right-section {
        padding: 0.5rem 0 1.5rem;
    }

    .additional-content {
        padding: 2rem 1rem;
    }

    .content-item {
        padding: 1.25rem;
    }
}

