:root {
    --black: #000000;
    --dark-gray: #0a0a0a;
    --medium-gray: #1a1a1a;
    --gold: #FFD700;
    --gold-dark: #FFA500;
    --gold-light: #FFED4E;
    --white: #ffffff;
    --text-gray: #a0a0a0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}

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

    100% {
        transform: translate(50px, 50px);
    }
}

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


.header {
    padding: 30px 0;
    position: relative;
    z-index: 100;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content {
    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-icon img {
    height: 50px;
    border-radius: 500px;
    animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
    0% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(-15deg);
    }
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.connect-wallet-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

.connect-wallet-btn:hover::before {
    left: 100%;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

.connect-wallet-btn:active {
    transform: translateY(0);
}

.btn-icon {
    display: flex;
    align-items: center;
}


.main-section {
    padding: 80px 0 120px;
    position: relative;
    z-index: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-left {
    animation: fadeInLeft 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-right {
    animation: fadeInRight 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.main-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.highlight {
    color: var(--gold);
    font-weight: 700;
}


.timer-container {
    margin-bottom: 50px;
}

.timer-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

.timer-block {
    background: var(--medium-gray);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 20px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timer-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timer-block:hover::before {
    opacity: 1;
}

.timer-block:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.timer-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.timer-unit {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.5;
}


.claim-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 16px;
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.claim-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.claim-btn:hover::before {
    width: 300px;
    height: 300px;
}

.claim-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

.claim-btn:active {
    transform: translateY(0);
}

.claim-btn-text,
.claim-btn-icon {
    position: relative;
    z-index: 1;
}

.claim-btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.claim-btn:hover .claim-btn-icon {
    transform: translateX(5px);
}

.token-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    border-radius: 500px;
    z-index: 2;
}

.token-logo img {
    border-radius: 500px;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.token-logo-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.token-logo svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
}


.notifications-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.notification {
    background: var(--medium-gray);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    animation: slideInRight 0.5s ease-out, slideOutRight 0.5s ease-out 4.5s;
    position: relative;
    overflow: hidden;
}

@keyframes slideInRight {
    from {
        transform: translateX(500px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(500px);
        opacity: 0;
    }
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.notification-icon img {
    width: 40px;
    height: 40px;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.notification-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.notification-address {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
    font-family: 'Courier New', monospace;
}

.notification-text {
    font-size: 13px;
    color: var(--text-gray);
}

.notification-amount {
    color: var(--white);
    font-weight: 700;
}


@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .content-grid {
        gap: 60px;
    }

    .main-title {
        font-size: 56px;
    }
}

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .content-right {
        order: -1;
    }

    .token-logo img {
        width: 250px;
        height: 250px;
    }

    .token-logo-glow {
        width: 300px;
        height: 300px;
    }

    .main-title {
        font-size: 48px;
    }

    .main-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 20px 0;
    }

    .logo-text {
        font-size: 20px;
    }

    .connect-wallet-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .main-section {
        padding: 40px 0 80px;
    }

    .main-title {
        font-size: 36px;
    }

    .main-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .timer {
        gap: 10px;
    }

    .timer-block {
        padding: 15px 20px;
    }

    .timer-value {
        font-size: 36px;
    }

    .timer-separator {
        font-size: 36px;
    }

    .claim-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 40px;
        font-size: 16px;
    }

    .token-logo svg {
        width: 200px;
        height: 200px;
    }

    .notifications-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .logo-icon img {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 18px;
    }

    .connect-wallet-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-icon svg {
        width: 16px;
        height: 16px;
    }

    .main-title {
        font-size: 28px;
    }

    .main-description {
        font-size: 14px;
    }

    .timer {
        gap: 8px;
    }

    .timer-block {
        padding: 12px 15px;
    }

    .timer-value {
        font-size: 28px;
    }

    .timer-unit {
        font-size: 10px;
    }

    .timer-separator {
        font-size: 28px;
    }

    .claim-btn {
        padding: 16px 30px;
        font-size: 15px;
    }

    .notification {
        padding: 12px 16px;
    }

    .notification-icon {
        width: 35px;
        height: 35px;
    }

    .notification-address {
        font-size: 12px;
    }

    .notification-text {
        font-size: 11px;
    }
}