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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo svg {
    color: white;
    height: 18px;
    width: auto;
}

.airdrop-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.text-section {
    text-align: center;
    margin-bottom: 60px;
    z-index: 5;
}

@keyframes shimmer {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
        -webkit-filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
        -webkit-filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
        -webkit-filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
}

.seeker-logo {
    width: 450px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    max-width: 100%;
    -webkit-filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: shimmer 3s ease-in-out infinite;
    -webkit-animation: shimmer 3s ease-in-out infinite;
}

.seeker-description {
    font-size: 18px;
    font-weight: 300;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 40px;
}

.check-allocation-btn {
    background: linear-gradient(135deg, #E0E0E0, #B0B0B0);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.check-allocation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Phone Section */
.phone-section {
    position: relative;
    z-index: 1;
}

.hero-phone {
    width: 450px;
    height: auto;
    transform: rotate(-15deg) translateY(20px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 12px;
    color: #888;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.telegram-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.telegram-icon:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(1) brightness(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .seeker-logo {
        width: 300px;
        max-width: 90vw;
    }
    
    .seeker-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .hero-phone {
        width: 350px;
        max-width: 90vw;
    }
    
    .header {
        padding: 15px 20px;
    }
    
    .footer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .seeker-logo {
        width: 250px;
        max-width: 85vw;
    }
    
    .hero-phone {
        width: 280px;
        max-width: 85vw;
    }
    
    .telegram-icon {
        width: 25px;
        height: 25px;
    }
    
    .social-icons a {
        padding: 5px;
    }
    
    .main-content {
        padding: 20px 10px;
    }
    
    .text-section {
        margin-bottom: 40px;
    }
}

/* iPhone specific fixes */
@supports (-webkit-touch-callout: none) {
    .seeker-logo {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .seeker-description {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .check-allocation-btn {
        -webkit-appearance: none;
        -webkit-border-radius: 25px;
        border-radius: 25px;
    }
}
