/* Alliance Font Family */
@import url('https://fonts.cdnfonts.com/css/alliance');
@import url('https://fonts.cdnfonts.com/css/alliance-no1');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Alliance', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 119, 198, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(96, 165, 250, 0.3) 0%, transparent 40%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-logo .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo-image {
    width: 120px;
    height: 32px;
    border-radius: 4px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo .logo-text span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links .dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links .arrow {
    font-size: 12px;
    color: #888888;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.connect-wallet {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.connect-wallet:hover {
    background-color: #333333;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    color: #888888;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.social-icon:hover {
    color: #ffffff;
}

.nav-mobile {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 0;
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: bold !important;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 20px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button {
    background-color: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

.secondary-button {
    background-color: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Featured In Section */
.featured-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0px, transparent 1px),
        rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.featured-title {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.featured-grid .featured-logo:nth-child(5) {
    grid-column: 1 / 2;
    justify-self: end;
}

.featured-grid .featured-logo:nth-child(6) {
    grid-column: 2 / 4;
    justify-self: center;
}

.featured-grid .featured-logo:nth-child(7) {
    grid-column: 4 / 5;
    justify-self: start;
}

.featured-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.featured-logo:hover {
    opacity: 1;
}

.featured-logo img {
    max-height: 50px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1.1);
}

.featured-logo .logo-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.fed-seal {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
}

.fed-seal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(101, 102, 241, 0.3);
    border-radius: 50%;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0px, transparent 1px),
        rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.section-title {
    font-family: 'Alliance No.1', 'Alliance', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #888888;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background-color: #333333;
    border: 1px solid #333333;
    border-radius: 12px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo:hover {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.partner-logo img {
    max-width: 90%;
    max-height: 50px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: brightness(1);
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    display: block;
}

.logo-subtext {
    font-size: 12px;
    color: #888888;
    margin-top: 4px;
    font-weight: 400;
}

/* Insights Section */
.insights-section {
    padding: 120px 0;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 1;
}

.insights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0px, transparent 1px),
        rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.insights-header {
    margin-bottom: 30px;
}

.insights-label {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    color: #cccccc;
    font-weight: 500;
}

.insights-title {
    font-family: 'Alliance No.1', 'Alliance', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 120px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0px, transparent 1px),
        rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1px;
}

.faq-header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 -20px;
    border-radius: 8px;
}

.faq-header h3 {
    font-family: 'Alliance No.1', 'Alliance', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-toggle {
    font-size: 28px;
    color: #888888;
    font-weight: 300;
    transition: transform 0.2s ease;
    min-width: 30px;
    text-align: center;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-content.expanded {
    max-height: 1000px;
    padding: 0 20px 30px;
}

.faq-content p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content ul {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 20px;
}

.faq-content li {
    margin-bottom: 12px;
}

.faq-content li strong {
    color: #ffffff;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 140px;
    height: 40px;
    border-radius: 4px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text span {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-family: 'Alliance No.1', 'Alliance', sans-serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #888888;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: left;
}

.footer-bottom p {
    color: #888888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
    }
    
    .partner-logo {
        padding: 30px 15px;
        min-height: 140px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .connect-wallet {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero-section {
        padding: 140px 0 60px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-family: Arial, Helvetica, sans-serif !important;
        font-size: 1.8rem;
        font-weight: bold !important;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 280px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
        max-width: 600px;
    }
    
    .featured-logo img {
        max-height: 45px;
    }
    
    .featured-grid .featured-logo:nth-child(5) {
        grid-column: 1;
        justify-self: center;
    }
    
    .featured-grid .featured-logo:nth-child(6) {
        grid-column: 2;
        justify-self: center;
    }
    
    .featured-grid .featured-logo:nth-child(7) {
        grid-column: 3;
        justify-self: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    
    .partner-logo {
        padding: 40px 20px;
        min-height: 120px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .insights-section {
        padding: 80px 0;
    }
    
    .section-title,
    .insights-title {
        font-family: 'Alliance No.1', 'Alliance', sans-serif;
        font-size: 2rem;
        font-weight: 600;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .faq-header h3 {
        font-family: 'Alliance No.1', 'Alliance', sans-serif;
        font-size: 20px;
        font-weight: 600;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        display: none;
    }
    
    .nav-actions {
        gap: 0;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        max-width: 400px;
    }
    
    .featured-logo img {
        max-height: 40px;
    }
    
    .featured-grid .featured-logo:nth-child(5) {
        grid-column: 1;
        justify-self: center;
    }
    
    .featured-grid .featured-logo:nth-child(6) {
        grid-column: 2;
        justify-self: center;
    }
    
    .featured-grid .featured-logo:nth-child(7) {
        grid-column: 1 / 3;
        justify-self: center;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-header {
        padding: 20px 0;
    }
    
    .faq-header h3 {
        font-family: 'Alliance No.1', 'Alliance', sans-serif;
        font-size: 18px;
        font-weight: 600;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Alliance No.1', 'Alliance', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 30px;
}

.modal-step {
    transition: all 0.3s ease;
}

.modal-step.hidden {
    display: none;
}

.hidden {
    display: none !important;
}

.modal-step p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.wallet-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    transition: all 0.2s ease;
}

.wallet-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.wallet-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.check-button {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.check-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.check-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-card.eligible {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.1);
}

.result-card.not-eligible {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.1);
}

.result-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.result-card h3 {
    font-family: 'Alliance No.1', 'Alliance', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.result-card p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.wallet-balance {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #ffffff;
}

.wallet-balance span:first-child {
    color: #cccccc;
}

.wallet-balance span:last-child {
    color: #ffffff;
    font-weight: bold;
}

.airdrop-amount {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 15px 12px;
    margin: 20px 0;
    text-align: center;
    font-size: 16px;
}

.eligible-text {
    color: #22c55e;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ondo-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 24px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.ondo-amount-blurred {
    color: #ffffff;
    filter: blur(8px);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.ondo-text {
    color: #ffffff;
    font-weight: bold;
}

.claim-button {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.claim-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.secondary-modal-button {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.secondary-modal-button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.requirement-text {
    color: #fbbf24 !important;
    font-size: 14px !important;
    margin-top: 10px !important;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .check-button {
        width: 100%;
        padding: 14px;
    }
    
    .result-card {
        padding: 20px;
    }
    
    .result-icon {
        font-size: 40px;
    }
} 