/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

/* Navigation */
.navbar {
    position: relative;
    z-index: 100;
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4cf5a);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #f4cf5a;
}

.btn-start {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

/* Launch Date Card (Top Right) */
.launch-card {
    position: absolute;
    top: 120px;
    right: 50px;
    z-index: 200;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 207, 90, 0.1));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.card-content {
    text-align: center;
}

.card-label {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-date {
    color: #f4cf5a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(244, 207, 90, 0.5);
}

.card-countdown {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-countdown span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4cf5a;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-main {
    max-width: 800px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #d4af37;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

/* Egyptian Progress Bar */
.egyptian-progress {
    margin: 3rem 0;
}

.progress-container {
    display: flex;
    align-items: center;

    margin-bottom: 1rem;
    background: linear-gradient(145deg, rgba(20, 8, 8, 0.80), rgba(0, 0, 0, 0.80));
    border-radius: 20px;
    padding: 10px 30px 10px 30px;
}

.progress-ornament {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4cf5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: ornamentPulse 3s ease-in-out infinite;
}

@keyframes ornamentPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(212, 175, 55, 0.8); }
}

.progress-ornament::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 50%;
    z-index: -1;
    animation: ornamentRotate 8s linear infinite;
}

@keyframes ornamentRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.player-avatar-gif {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6)) brightness(1.1);
    transition: transform 0.3s ease;
}

.progress-ornament:hover .player-avatar-gif {
    transform: scale(1.1);
}

.progress-main {
    flex: 1;
    text-align: center;
}

/* Egyptian Progress Bar with Vertical Lines */
.essence-gift-progress-wrap {
    position: relative;
    background: linear-gradient(90deg, #1a1410, #2a1f15, #1a1410);
    border-radius: 20px;
    border: 3px solid rgba(212, 175, 55, 0.4);
    overflow: hidden;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(212, 175, 55, 0.3);

    padding: 5px;
    transition: all 0.3s ease;
    animation: progressContainerGlow 4s ease-in-out infinite;
}

@keyframes progressContainerGlow {
    0%, 100% { box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 35px rgba(212, 175, 55, 0.5); }
}

.essence-gift-progress-wrap:hover {
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.6);
    transform: scale(1.02);
}

.essence-gift-progress-wrap-svg {
    position: relative;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essence-gift-progress-bar-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.essence-gift-progress__gradient {
    flex: 1;
    min-width: 0;
}

.essence-gift-progress__gradient path {
    transition: all 0.2s ease;
    cursor: pointer;
}

.essence-gift-progress__gradient path:hover {
    stroke-width: 10;
    filter: brightness(1.4) drop-shadow(0 0 8px #FFD700);
}

.essence-gift-progress-wrap__number {
    margin-left: 24px;
    background: rgba(0,0,0,0.85);
    border: 2px solid #d4af37;
    border-radius: 30px;
    padding: 8px 32px;
    font-size: 1.0rem;
    font-weight: 700;
    color: #FFD700;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(212,175,55,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.essence-gift-progress__gradient .bar-unfilled {
    stroke: #888;
    opacity: 1;
}

.progress-current {
    color: #f4cf5a;
    text-shadow: 0 0 10px rgba(244, 207, 90, 0.5);
    animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    0% { text-shadow: 0 0 10px rgba(244, 207, 90, 0.5); }
    100% { text-shadow: 0 0 20px rgba(244, 207, 90, 0.8); }
}

.progress-separator {
    color: #d4af37;
    margin: 0 0.5rem;
    font-size: 1rem;
}

.progress-total {
    color: #cccccc;
}

.gift-box {
    position: relative;
}

.gift-icon-egyptian {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b4513, #d4af37, #f4cf5a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: giftBounce 2s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(-2deg); }
    75% { transform: scale(1.05) rotate(2deg); }
}

.gift-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #f4cf5a;
    border-radius: 50%;
    animation: sparkleFloat 2s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: -5px;
    left: 10px;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 10px;
    right: -5px;
    animation-delay: 0.7s;
}

.sparkle:nth-child(3) {
    bottom: -5px;
    left: 40px;
    animation-delay: 1.4s;
}

@keyframes sparkleFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: translateY(-10px) scale(1.2); 
        opacity: 0.7; 
    }
}

.progress-description {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

.btn-claim {
    position: relative;
    background: linear-gradient(90deg, #FFD700 0%, #FF8C00 100%);
    color: #181818;
    border: none;
    padding: 18px 48px;
    border-radius: 32px;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 0 32px 0 #FFD70055, 0 8px 32px #000a;
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 1;
}
.btn-claim .btn-claim-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, #fffbe6 0%, #FFD700 40%, transparent 80%);
    opacity: 0.5;
    filter: blur(12px);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.btn-claim .btn-claim-shine {
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.0) 100%);
    transform: skewX(-20deg);
    z-index: 1;
    pointer-events: none;
    animation: btnShine 2.5s infinite linear;
}
@keyframes btnShine {
    0% { left: -75%; }
    100% { left: 120%; }
}
.btn-claim:hover {
    transform: scale(1.07) rotate(-1deg);
    box-shadow: 0 0 60px 10px #FFD70099, 0 12px 40px #FF8C00aa;
}
.btn-claim:active {
    transform: scale(0.98);
}
.btn-claim i {
    margin-right: 10px;
    font-size: 1.2em;
    vertical-align: middle;
}
.btn-claim span {
    position: relative;
    z-index: 2;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 50%, #0a0a0a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #f4cf5a;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(244, 207, 90, 0.3);
}

.section-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4cf5a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h3 {
    color: #f4cf5a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Stats */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f4cf5a;
    display: block;
    text-shadow: 0 0 20px rgba(244, 207, 90, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Registration Section */
.registration {
    padding: 8rem 0;
    background: #000;
}

.registration-header {
    text-align: center;
    margin-bottom: 4rem;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Registration Form */
.registration-form {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #f4cf5a;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #cccccc;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #f4cf5a;
    box-shadow: 0 0 20px rgba(244, 207, 90, 0.2);
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.phone-input select {
    flex: 0 0 120px;
}

.btn-register {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #d4af37, #f4cf5a);
    border: none;
    border-radius: 50px;
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Password Strength Indicator (copiado do register.css) */
.password-strength {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.strength-weak { color: #dc3545; }
.strength-medium { color: #ffc107; }
.strength-strong { color: #28a745; }

/* Form Text */
.form-text {
    color: rgba(253, 218, 154, 0.6);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Rewards Section */
.rewards-section {
    background: rgba(244, 207, 90, 0.05);
    border: 1px solid rgba(244, 207, 90, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.rewards-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rewards-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #f4cf5a;
    margin-bottom: 0.5rem;
}

.rewards-header p {
    color: #cccccc;
    font-size: 1rem;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.reward-item {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reward-item:hover {
    transform: translateY(-5px);
    border-color: #f4cf5a;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.reward-icon {
    font-size: 2.5rem;
    color: #f4cf5a;
    position: relative;
    display: inline-block;
}

.reward-amount,
.reward-plus {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d4af37;
    color: #000;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
}

.reward-name {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Social Steps */
.social-steps {
    margin-top: 3rem;
}

.steps-header {
    margin-bottom: 1.5rem;
}

.steps-header h4 {
    color: #f4cf5a;
    font-size: 1.1rem;
    text-align: center;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37, #f4cf5a);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #cccccc;
    font-size: 0.9rem;
}

.social-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.social-btn.discord {
    background: #5865F2;
    color: white;
}

.social-btn.discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

.social-buttons {
    display: flex;
    gap: 0.5rem;
}

.social-btn.facebook { background: #1877F2; color: white; width: 35px; height: 35px; justify-content: center; border-radius: 50%; }
.social-btn.twitter { background: #1DA1F2; color: white; width: 35px; height: 35px; justify-content: center; border-radius: 50%; }
.social-btn.youtube { background: #FF0000; color: white; width: 35px; height: 35px; justify-content: center; border-radius: 50%; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 207, 90, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
    max-width: 500px;
    width: 90%;
}

.modal-header i {
    font-size: 3rem;
    color: #f4cf5a;
    margin-bottom: 1rem;
    animation: crownSpin 2s ease-in-out infinite;
}

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

.modal-header h3 {
    font-family: 'Cinzel', serif;
    color: #f4cf5a;
    margin-bottom: 1rem;
}

.modal-rewards {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #f4cf5a;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4cf5a);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .launch-card {
        top: 100px;
        right: 30px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .launch-card {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 auto 2rem;
        clip-path: none;
        max-width: 280px;
    }
    
    .progress-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-ornament {
        width: 50px;
        height: 50px;
    }
    
    .player-avatar-gif {
        width: 35px;
        height: 35px;
    }
    
    .gift-icon-egyptian {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .launch-card {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .progress-ornament {
        width: 40px;
        height: 40px;
    }
    
    .player-avatar-gif {
        width: 32px;
        height: 32px;
    }
    
    .gift-icon-egyptian {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .progress-track {
        height: 20px;
    }
    
    .registration-form,
    .rewards-section {
        padding: 2rem;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Game UI Premium Card */
.launch-card.game-ui {
    background: linear-gradient(135deg, #181818 60%, #2d2d2d 100%);
    border: 3px solid #d4af37;
    overflow: hidden;
    position: absolute;
    top: 120px;
    right: 50px;
    min-width: 220px;
    z-index: 200;
    padding: 1rem 1rem;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: box-shadow 0.3s;
}
.launch-card.game-ui:hover {
    box-shadow: 0 0 60px 0 #f4cf5a99, 0 8px 32px #000a;
}
.card-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0.18) 100%);
    pointer-events: none;
    z-index: 1;
}
.card-shine {
    position: absolute;
    top: -40px; left: -60px;
    width: 180px; height: 80px;
    background: linear-gradient(120deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.01) 100%);
    filter: blur(2px);
    transform: rotate(18deg);
    animation: cardShineMove 3.5s linear infinite;
    z-index: 2;
    pointer-events: none;
}
@keyframes cardShineMove {
    0% { left: -60px; top: -40px; opacity: 0.2; }
    40% { opacity: 0.5; }
    60% { opacity: 0.5; }
    100% { left: 120px; top: 40px; opacity: 0.1; }
}
.launch-card .card-content {
    position: relative;
    z-index: 3;
}
.launch-card .card-label {
    color: #f4cf5a;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 0 8px #d4af37cc;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.launch-card .card-date {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 16px #d4af37cc, 0 2px 8px #000a;
    margin-bottom: 0.5rem;
}
.launch-card .card-countdown {
    color: #f4cf5a;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 0 8px #d4af37cc;
}
.launch-card .card-countdown span {
    font-size: 1.7rem;
    color: #ffd700;
    text-shadow: 0 0 12px #f4cf5a;
}

/* Barra de Progresso Premium/Game */
.egyptian-progress .progress-container {
    
    border: 3px solid #d4af37;

    box-shadow: 0 0 40px 0 #d4af3755, 0 8px 32px #000a;

    position: relative;
    overflow: visible;
}
.egyptian-progress .progress-container:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: 0 0 40px 10px #d4af3722 inset;
    z-index: 0;
}
.egyptian-progress .progress-main {
    z-index: 2;
}
.egyptian-progress .progress-track {
    border: none;
    background: linear-gradient(90deg, #232323 60%, #3a2d1a 100%);
    box-shadow: 0 0 10px #d4af3722 inset;
}
.egyptian-progress .progress-bar-egyptian {
    background: linear-gradient(90deg, #ffd700 0%, #d4af37 40%, #b8860b 100%);
    box-shadow: 0 0 30px 10px #f4cf5a55, 0 0 10px #ffd700 inset;
    border-radius: 15px;
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    z-index: 2;
    transition: width 1.2s cubic-bezier(.77,0,.18,1);
}
.egyptian-progress .progress-bar-egyptian .progress-glow {
    display: none;
}
.egyptian-progress .progress-bar-egyptian .progress-shine {
    display: none;
}
.egyptian-progress .progress-markers .marker {
    background: linear-gradient(180deg, #ffd700 0%, #d4af37 100%);
    width: 3px;
    height: 80%;
    border-radius: 2px;
    box-shadow: 0 0 8px #ffd70099;
    opacity: 0.7;
    transition: background 0.3s;
}
.egyptian-progress .progress-text {
    font-size: 1.3rem;
    color: #fff;
    text-shadow: 0 0 8px #d4af37cc;
    font-weight: 900;
    letter-spacing: 1px;
}
.egyptian-progress .progress-current {
    color: #ffd700;
    text-shadow: 0 0 12px #f4cf5a;
}
.egyptian-progress .progress-separator {
    color: #d4af37;
}
.egyptian-progress .progress-total {
    color: #f4cf5a;
}
.egyptian-progress .progress-description {
    color: #ffd700;
    font-size: 1rem;
    text-shadow: 0 0 8px #d4af37cc;
    font-weight: 600;
    margin-top: 1.2rem;
}

/* Gift Icon 3D Premium */
.gift-icon-egyptian.premium-gift {
    background: none;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    animation: giftBounce 2s infinite;
    transition: filter 0.2s;
}
.gift-img-3d {
    width: 70px;
    height: 70px;
    display: block;
    filter: drop-shadow(0 0 16px #d4af37cc) drop-shadow(0 0 8px #000a);
    z-index: 2;
    pointer-events: none;
    animation: giftPulse 2.5s infinite;
}
@keyframes giftPulse {
    0%, 100% { filter: drop-shadow(0 0 16px #d4af37cc) drop-shadow(0 0 8px #000a) brightness(1); }
    50% { filter: drop-shadow(0 0 32px #ffd700cc) drop-shadow(0 0 16px #d4af37cc) brightness(1.15); }
}
.gift-icon-egyptian.premium-gift:hover .gift-img-3d {
    filter: drop-shadow(0 0 32px #ffd700cc) drop-shadow(0 0 24px #d4af37cc) brightness(1.2);
}
.gift-icon-egyptian .gift-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 110px; height: 110px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #ffd70055 0%, #d4af3700 80%);
    z-index: 1;
    pointer-events: none;
    filter: blur(2px);
    opacity: 0.7;
    animation: giftGlowRotate 4s linear infinite;
}
@keyframes giftGlowRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.gift-icon-egyptian .gift-shine {
    position: absolute;
    top: 10px; left: 10px;
    width: 50px; height: 20px;
    background: linear-gradient(120deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.01) 100%);
    filter: blur(2px);
    border-radius: 20px;
    opacity: 0.7;
    pointer-events: none;
    animation: giftShineMove 2.5s linear infinite;
}
@keyframes giftShineMove {
    0% { left: 10px; top: 10px; opacity: 0.2; }
    40% { opacity: 0.7; }
    60% { opacity: 0.7; }
    100% { left: 30px; top: 30px; opacity: 0.1; }
}
.gift-icon-egyptian .gift-sparkles {
    z-index: 4;
}
.gift-icon-egyptian .sparkle {
    background: #ffd700;
    width: 6px;
    height: 6px;
    opacity: 0.8;
    filter: blur(0.5px);
    animation: sparkleFloat 1.5s ease-in-out infinite;
}
.gift-icon-egyptian .sparkle:nth-child(1) {
    top: -10px; left: 10px;
    animation-delay: 0s;
}
.gift-icon-egyptian .sparkle:nth-child(2) {
    top: 20px; right: -10px;
    animation-delay: 0.7s;
}
.gift-icon-egyptian .sparkle:nth-child(3) {
    bottom: -10px; left: 40px;
    animation-delay: 1.1s;
}
@media (max-width: 1024px) {
    .launch-card {
        top: 100px;
        right: 30px;
        padding: 1rem 1.5rem;
    }
    .gift-icon-egyptian.premium-gift, .gift-img-3d {
        width: 50px;
        height: 50px;
    }
    
    .essence-gift-progress-wrap svg {
        width: 350px;
        height: 40px;
    }
    

}
@media (max-width: 768px) {
    .launch-card {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 auto 2rem;
        clip-path: none;
        max-width: 280px;
    }
    .progress-container {
        flex-direction: column;
        gap: 1rem;
    }
    .progress-ornament {
        width: 50px;
        height: 50px;
    }
    .hieroglyph {
        font-size: 1.4rem;
    }
    .gift-icon-egyptian.premium-gift, .gift-img-3d {
        width: 40px;
        height: 40px;
    }
    
    .essence-gift-progress-wrap svg {
        width: 300px;
        height: 35px;
    }
    
    .essence-gift-progress-wrap__number {
        font-size: 1rem;
    }
    

}
@media (max-width: 480px) {
    .launch-card {
        padding: 1rem;
        font-size: 0.9rem;
    }
    .progress-ornament {
        width: 40px;
        height: 40px;
    }
    .hieroglyph {
        font-size: 1.2rem;
    }
    .gift-icon-egyptian.premium-gift, .gift-img-3d {
        width: 32px;
        height: 32px;
    }
    
    .essence-gift-progress-wrap {
        padding: 6px;
    }
    
    .essence-gift-progress-wrap svg {
        width: 250px;
        height: 30px;
    }
    
    .essence-gift-progress-wrap__number {
        font-size: 0.9rem;
    }
    

}
.progress-ornament.left {
    display: none;
}
.progress-ornament.right {
    position: static;
    margin-left: 24px;
    align-self: center;
    top: 0;
    left: 0;
}

.launch-highlight {
    background: linear-gradient(90deg, rgba(24, 24, 24, 0.9) 60%, rgba(45, 45, 45, 0.9) 100%), url('/static/img/landing/pre-reg-cs-bg.jpg');
    background-size: cover;
    background-position:top;
    background-repeat: no-repeat;
    border: 2px solid #FFD700;
    border-radius: 18px 18px 18px 18px/18px 18px 18px 18px;
    box-shadow: 0 0 40px 0 #d4af3755, 0 8px 32px #000a;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #FFD700;
    font-family: 'Cinzel', serif;
    position: relative;
    overflow: visible;
}
.launch-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.launch-date {
    color: #fff;
    font-weight: 900;
    font-size: 1.2em;
}
.launch-countdown {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.launch-cta {
    font-size: 1rem;
    color: #fffbe6;
    margin-top: 0.5rem;
}

.rewards-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 1.5rem 0;
    gap: 10px;
}
.carousel-btn {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    border: none;
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    box-shadow: 0 2px 8px #FFD70055;
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}
.carousel-btn:hover {
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    transform: scale(1.1);
}
.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 0;
    min-width: 0;
    max-width: 420px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar {
    display: none;
}
.carousel-item {
    background: linear-gradient(120deg, #2d2d2d 60%, #181818 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px #FFD70022;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.carousel-item .reward-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: all 0.3s ease;
}
.carousel-item:hover {
    transform: scale(1.15) rotate(-3deg);
    box-shadow: 0 0 24px 4px #FFD70099;
    background: linear-gradient(120deg, #FFD700 60%, #FF8C00 100%);
}

.carousel-item:hover .reward-icon {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Estilo para intl-tel-input v23 */
.iti {
    width: 100% !important;
    position: relative;
}

.iti__country-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px;
}

.iti__selected-country {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 0 8px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    min-width: 52px;
    border-radius: 0 8px 8px 0;
}


.iti input[type="tel"] {
    padding-right: 60px !important;
    width: 100% !important;
}

.iti__country-list {
    position: absolute;
    z-index: 1000;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background-color: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 300px;
    left: 0;
    top: 100%;
}

.iti__country {
    padding: 8px 12px;
    outline: none;
    color: #ffffff;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.iti__country:last-child {
    border-bottom: none;
}

.iti__country:hover, 
.iti__country.iti__highlight {
    background-color: rgba(212, 175, 55, 0.2);
}

.iti__country-name {
    margin-left: 8px;
    flex: 1;
    text-align: left;
}

.iti__dial-code {
    color: rgba(212, 175, 55, 0.8);
    margin-left: 8px;
    font-weight: 600;
    min-width: 50px;
    text-align: left;
}

.iti__flag {
    width: 20px;
    height: 15px;
    box-shadow: 0px 0px 1px 0px #888;
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@23.0.11/build/img/flags.png");
    background-repeat: no-repeat;
    background-color: #DBDBDB;
    background-position: 20px 0;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@23.0.11/build/img/flags@2x.png");
        background-size: 5652px 15px;
    }
}

.iti__arrow {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid rgba(212, 175, 55, 0.8);
    width: 0;
    height: 0;
    margin-left: 4px;
}

.iti__arrow--up {
    border-top: none;
    border-bottom: 4px solid rgba(212, 175, 55, 0.8);
}

/* Garantir que o dropdown apareça acima de outros elementos */
.iti__country-list {
    z-index: 9999 !important;
}

/* Melhorar a visibilidade do seletor de país */
.iti__selected-country {
    transition: all 0.2s ease;
}


/* Estilo para quando o campo está focado */
.iti.iti--allow-dropdown input:focus + .iti__country-container .iti__selected-country {
    background: rgba(212, 175, 55, 0.2);
}

/* Garantir que o input funcione mesmo sem as bandeiras */
.iti input[type="tel"] {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.iti input[type="tel"]:focus {
    border-color: #d4af37 !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Estilo para o placeholder */
.iti input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Scrollbar customizado para a lista de países */
.iti__country-list::-webkit-scrollbar {
    width: 8px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4af37, #f4cf5a);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f4cf5a, #ffd700);
}

/* Firefox */
.iti__country-list {
    scrollbar-width: thin;
    scrollbar-color: #d4af37 rgba(0, 0, 0, 0.3);
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
    .iti__country-list {
        width: 280px !important;
        max-height: 150px !important;
    }
    
    .iti__selected-country {
        min-width: 45px !important;
    }
    
    .iti input[type="tel"] {
        padding-right: 50px !important;
    }
}

/* Flash Messages Styles */
.flash-messages {
    position: fixed; 
    top: 20px; 
    right: 20px; 
    z-index: 9999;
}

.flash-notification {
    position: relative;
    color: #fff; 
    padding: 20px; 
    border-radius: 15px; 
    margin-bottom: 10px; 
    backdrop-filter: blur(10px); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 300px;
    max-width: 500px;
    font-weight: 600;
    font-size: 14px;
}

.flash-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(72, 180, 97, 0.9)); 
    border: 2px solid rgba(40, 167, 69, 0.8);
}

.flash-error {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.9), rgba(255, 107, 107, 0.9)); 
    border: 2px solid rgba(220, 53, 69, 0.8);
}

.flash-close {
    position: absolute; 
    top: 10px; 
    right: 15px; 
    background: none; 
    border: none; 
    color: currentColor; 
    font-size: 18px; 
    cursor: pointer; 
    opacity: 0.7;
}

.flash-close:hover {
    opacity: 1;
}