/* Global Styles */
:root {
    --primary-color: #002868;
    --secondary-color: #bf0a30;
    --gold-color: #d4af37;
    --dark-gold: #b8860b;
    --light-gold: #f5d76e;
    --white: #ffffff;
    --black: #000000;
    --gray: #333333;
    --light-gray: #f5f5f5;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Language Selector */
#language-selector {
    margin: 0 15px;
    position: relative;
}

#language-select {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 16px;
    font-size: 14px;
    border: 2px solid var(--gold-color);
    border-radius: 5px;
    cursor: pointer;
    min-width: 150px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="gold" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--gold-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--gold-color);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--gold-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--black) 100%);
    color: var(--white);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 50px;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-content h1 span {
    display: block;
}

.hero-content h1 span:nth-child(2) {
    color: var(--gold-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    transform: rotate(5deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Countdown */
.countdown {
    margin-bottom: 40px;
}

.counter-container {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--gold-color);
}

.counter-container span {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-color);
    margin: 10px 0;
}

/* About Section */
#about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Features Section */
#features {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Presale Section */
#presale {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.presale-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.presale-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
}

.presale-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gold-color);
}

.presale-item h3 {
    color: var(--gold-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 10px;
}

.discount-price {
    font-size: 1.2rem;
    font-weight: 700;
}

.highlight {
    color: var(--gold-color);
    font-size: 1.5rem;
}

/* Payment Section */
#payment {
    padding: 100px 0;
    background-color: var(--white);
}

.payment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
}

.payment-option {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-option h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.crypto-address {
    margin-bottom: 20px;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border: 2px solid var(--gold-color);
}

.address {
    background-color: var(--white);
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
    margin-bottom: 10px;
}

.copy-button {
    background-color: var(--gold-color);
    color: var(--black);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background-color: var(--dark-gold);
}

.payment-option p.payment-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-top: 15px;
    display: block;
    background-color: rgba(0, 40, 104, 0.1);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--gold-color);
}

.payment-instructions {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
}

.payment-instructions h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.payment-instructions ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 20px;
}

.payment-instructions li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.payment-note {
    background-color: rgba(191, 10, 48, 0.1);
    padding: 15px;
    border-radius: 5px;
    border-left: 5px solid var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--gold-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--gold-color);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    header {
        padding: 20px;
    }
    
    nav ul li {
        margin-left: 15px;
    }
    
    #hero {
        flex-direction: column;
        padding: 80px 20px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .presale-details,
    .payment-options {
        grid-template-columns: 1fr;
    }
}

/* User Information Section */
#user-info {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.user-info-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.user-info-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-color);
    outline: none;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--gold-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
    margin-top: 15px;
}

.submit-button:hover {
    background-color: var(--gold-color);
    color: var(--black);
}

.info-security {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-security h3 {
    color: var(--gold-color);
    margin-bottom: 20px;
}

.info-security p {
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .user-info-content {
        grid-template-columns: 1fr;
    }
    
    .user-info-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}
