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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #222;
    color: #FFFFFF;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    display: flex;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Left Section - Graphics */
.graphics-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #222
}

.svg-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 600px;
    background: #222;
    padding: 30px;
}

.svg-container svg {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.svg-1 {
    max-width: 260px;
    transform: rotate(-8deg) translateX(-30px);
    z-index: 3;
    margin-bottom: -20px;
}

.svg-2 {
    max-width: 300px;
    transform: rotate(12deg) translateX(40px);
    z-index: 1;
    margin-bottom: -30px;
}

.svg-3 {
    max-width: 200px;
    transform: rotate(-5deg) translateX(-20px);
    z-index: 2;
}

/* Right Section - Content */
.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    background: #222;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    cursor: pointer;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(72, 255, 145, 0.4));
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 400px;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: radial-gradient(circle, rgba(72, 255, 145, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo-icon:hover::before {
    opacity: 1;
}

.logo-icon:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 6px 16px rgba(72, 255, 145, 0.6));
}

.logo-icon svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    width: 100%;
    height: auto;
}

/* Main Heading */
.main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #FFFFFF;
    max-width: 500px;
}

/* Terms Section */
.terms-section {
    margin-bottom: 40px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 2px solid #333;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
    border-color: #48FF91;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: transparent;
    border-color: #48FF91;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-text {
    font-size: 14px;
    line-height: 1.5;
    color: #CCCCCC;
}

.link {
    color: #48FF91;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link:hover {
    color: #00B894;
    text-decoration: underline;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 24px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #333;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}



.btn-primary:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-primary.active {
    color: #FFF;
}

.btn-secondary {
    background: rgba(72, 255, 145, 0.3);
    color: #000000;
    border: none;
    transition: all 0.3s ease;
}

.btn-secondary.active {
    background: #48FF91;
    color: #000000;
    border: none;
}

.btn-secondary:hover {
    background: rgba(72, 255, 145, 0.4);
}



/* Animations */
@keyframes sparkleAnim {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }
    
    .graphics-section {
        min-height: 600px;
        padding: 20px;
    }
    
    .svg-container {
        min-height: 500px;
    }
    
    .svg-1 {
        max-width: 200px;
        top: 15px;
        left: 20px;
    }
    
    .svg-2 {
        max-width: 240px;
        top: 140px;
        right: 15px;
    }
    
    .svg-3 {
        max-width: 160px;
        bottom: 30px;
        left: 35px;
    }
    
    .content-section {
        padding: 40px 20px;
    }
    
    .main-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 28px;
    }
    
    .globe {
        width: 200px;
        height: 200px;
    }
    
    .floating-shapes .shape {
        transform: scale(0.8);
    }
    
    .input-field {
        width: 60px;
        height: 30px;
    }
    
    .asterisks {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 24px;
    }
    
    .logo {
        gap: 12px;
    }
    
    .logo-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .logo-text .trust {
        font-size: 22px;
        letter-spacing: 1.5px;
    }
    
    .logo-text .wallet {
        font-size: 18px;
        letter-spacing: 1.2px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 14px;
        min-height: 48px;
    }
} 