/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'AnironcBold';
    src: url('AnironcBold-PKwr.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Main landing container */
.landing-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video background */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    display: block;
    background-color: #000;
}

/* Fallback background in case video doesn't load */
.landing-container {
    background: #0E0E0F;
}

/* Background overlay - Hidden */
.background-overlay {
    display: none;
}

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

/* Main content container */
.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 90vw;
    padding: 2rem;
}

/* Logo container */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.logo h1 {
    font-family: 'AnironcBold', serif;
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: normal;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.logo-image {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.3));
    transition: all 0.3s ease;
}

/* Logo hover effect removed */

.logo-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #FF8A4D;
    font-weight: 300;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

@keyframes logoGlow {
    0% { text-shadow: 0 0 30px rgba(255, 107, 107, 0.5); }
    100% { text-shadow: 0 0 50px rgba(255, 107, 107, 0.8), 0 0 70px rgba(255, 107, 107, 0.3); }
}

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

/* Token address container */
.token-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.token-address {
    background: rgba(42, 45, 51, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.token-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.token-ticker {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.token-value-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.token-address:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    background: rgba(42, 45, 51, 0.8);
}

.token-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.token-value {
    font-size: 0.8rem;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-weight: 400;
    word-break: break-all;
    text-align: center;
    line-height: 1.4;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.token-value:hover {
    opacity: 1;
    color: #ffffff;
    transform: scale(1.05);
}

.token-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Copy feedback text */
.copy-feedback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    pointer-events: none;
    z-index: 10;
}

.copy-feedback.show {
    opacity: 1;
}

/* Copy button removed - entire container is now clickable */

/* Social icons container */
.social-container {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(42, 45, 51, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FF6B6B;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 10;
}

.custom-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    transition: all 0.3s ease;
}

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

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover .custom-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.telegram-icon {
    width: 32px;
    height: 32px;
    transform: scale(1.1) translateX(-2px);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.social-icon:hover .telegram-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    transform: scale(1.1) translateX(-2px);
}

.social-icon:active {
    transform: translateY(-2px) scale(1.05);
}

/* Floating background elements - Hidden */
.floating-elements {
    display: none;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    width: 120px;
    height: 120px;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
    width: 60px;
    height: 60px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        letter-spacing: 0.05em;
    }
    
    .logo-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }
    
    .social-icons {
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .logo-image {
        max-width: 150px;
    }
    
    .token-address {
        padding: 0.8rem 0.5rem;
        max-width: 98%;
    }
    
    .token-header {
        gap: 0.6rem;
    }
    
    .token-ticker {
        font-size: 0.8rem;
    }
    
    .token-label {
        font-size: 0.8rem;
    }
    
    .token-value {
        font-size: 0.7rem;
    }
    
    /* Copy button removed from mobile */
    
    .floating-element {
        display: none;
    }
    
    .background-video {
        object-position: center;
    }
}

@media (max-width: 480px) {
    .logo-container {
        margin-bottom: 2rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .logo-image {
        max-width: 120px;
    }
    
    .token-address {
        padding: 0.6rem 0.3rem;
        max-width: 99%;
    }
    
    .token-header {
        gap: 0.5rem;
    }
    
    .token-ticker {
        font-size: 0.75rem;
    }
    
    .token-label {
        font-size: 0.75rem;
    }
    
    .token-value {
        font-size: 0.65rem;
    }
    
    /* Copy button removed from mobile */
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .logo-container {
        margin-bottom: 1.5rem;
    }
    
    .logo h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
        letter-spacing: 0.03em;
    }
    
    .logo-subtitle {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .social-icon {
        border-width: 1px;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .background-overlay,
    .floating-element,
    .logo h1 {
        animation: none;
    }
    
    .social-icon:hover {
        transform: none;
    }
} 