@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&amp;family=Rajdhani:wght@400;500;600;700&amp;family=Orbitron:wght@400;500;600;700&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    overflow: hidden;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -3;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(78, 59, 29, 0.4) 100%
    );
    z-index: -2;
}

.video-background::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    background: rgba(255, 255, 255, 0.1);
}



@media (max-aspect-ratio: 16/9) {
    video {
        width: 100%;
        height: auto;
    }
}

@media (min-aspect-ratio: 16/9) {
    video {
        width: auto;
        height: 100%;
    }
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 116, 75, 0.76);
}

.nav-logo {
    flex: 0 0 auto;
    width: 240px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto; 
}

.nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: #8b734b;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}


.nav-link:hover, .nav-link.active {
    color: #dbc12d;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-links .nav-link i {
    margin-right: 6px;
    font-size: 0.9em;
    opacity: 0.9;
}

.nav-links .nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.nav-auth {
    flex: 0 0 auto;
    min-width: 200px; 
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.nav-link.register {
    background: #c89900;
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
}

.nav-link.sign-in {
    background: rgba(139, 115, 75, 0.3);
    padding: 8px 16px;
    border-radius: 4px;
    color: #ffd700;
}

.nav-link.register:hover {
    background: #ecba12;
    color: white;
}

.nav-link.sign-in:hover {
    background: rgba(139, 115, 75, 0.5);
}

@media (max-width: 768px) {
    .top-nav {
        padding: 10px 15px;
    }

    .nav-links {
        gap: 10px;
        font-size: 0.8rem;
    }

    .nav-logo img {
        height: 30px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .top-nav {
        padding: 12px 20px;
    }

    .nav-logo {
        width: 100px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 1rem;
    }

    .nav-auth {
        min-width: 180px;
        gap: 10px;
    }
}

/* Medium Laptop Adjustments */
@media (min-width: 1025px) and (max-width: 1366px) {
    .top-nav {
        padding: 12px 25px;
    }

    .nav-logo {
        width: 100px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-link {
        font-size: 1rem;
    }

    .nav-auth {
        min-width: 190px;
        gap: 12px;
    }
}
.content {
    position: relative;
    color: white;
    padding: 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: ancient-reveal 1s ease-out forwards;
}

p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-top:10px;
}

.main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-top:70px;
    margin-bottom: 30px;
    animation: ancient-reveal 1s ease-out forwards;
}

@media (max-width: 768px) {
    .main-logo {
        margin-top:120px;
        max-width: 280px;
        
    }

    h1 {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
}



.countdown-header {
    padding: 15px 30px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #8b744b8f;
    box-shadow: 0 0 15px rgba(139, 115, 75, 0.3);
    backdrop-filter: blur(5px);
    animation: ancient-reveal 0.5s ease-out forwards;
    margin-bottom: 10px;
    margin-top: 40px;
    font-family: 'Cinzel', serif;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    animation: ancient-reveal 0.5s ease-out forwards;
}

.countdown-header-title {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom:10px;
    color: #ffffff;
}

.countdown-container {
    display: flex;
    gap: 20px;
    margin: 10px 0;
    justify-content: center;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px; 
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #8b744b8f;
    box-shadow: 0 0 15px rgba(139, 115, 75, 0.3);
    backdrop-filter: blur(5px);
    animation: ancient-reveal 0.5s ease-out forwards;
}

.time {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: ancient-reveal 1s ease-out forwards;
}

.label {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #8b734b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
    margin-top: 20px;
    animation: ancient-reveal 1.2s ease-out forwards;
}

@media only screen and (max-width: 768px) {
    .countdown-header {
        padding: 10px 15px;
        font-size: 0.9rem;
        margin-top: 20px;
        letter-spacing: 1px;
    }
    
    .countdown-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-box {
        width: 140px;
        padding: 15px 10px;
    }
    
    .time {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 1024px) {
    .countdown-box {
        width: 130px;
        padding: 15px 10px;
    }
}

@keyframes ancient-reveal {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
        filter: blur(10px);
    }
    50% {
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.download-container-outer {
    min-height:100vh;
    padding-top: 30px;
    padding-bottom: 30px;
}

.download-container {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #8b734b;
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(2px);
    max-width: 1000px;
    margin: 100px auto 60px auto;
    animation: ancient-reveal 0.5s ease-out forwards;
    transform-origin: center;
}

.download-section {
    margin-bottom: 30px;
}

.download-header {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.download-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 300;
    color: #ffd700;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.download-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px;
}

.download-boxes a {
    display: block;
    text-decoration: none;
    opacity: 0;
    animation: ancient-reveal 0.5s ease-out forwards;
    animation-delay: calc(var(--order) * 0.1s);
}

.download-boxes a:nth-child(1) { --order: 1; }
.download-boxes a:nth-child(2) { --order: 2; }
.download-boxes a:nth-child(3) { --order: 3; }
.download-boxes a:nth-child(4) { --order: 4; }


.download-box {
    background: rgba(139, 115, 75, 0.2);
    border: 1px solid #8b734b;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-box:hover {
    background: rgba(139, 115, 75, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.download-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: normal;
    font-size: 1.2rem;
    color: #ffd700;
}

.download-size {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #8b734b;
}

.download-notice {
    text-align: center;
    margin-top: 30px;
    padding: 10px;
    border-top: 1px solid rgba(139, 115, 75, 0.3);
}

.download-notice p {
    color: #8b734b;
    margin: 10px 0;
    font-size: 1.2rem;
}

.support-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background: rgba(139, 115, 75, 0.3);
    border: 1px solid #8b734b;
    color: #ffd700;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    transition: all 0.3s ease;
}

.support-button:hover {
    background: rgba(139, 115, 75, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

@media (max-width: 768px) {
    .download-boxes {
        grid-template-columns: 1fr;
    }
    
    .download-container {
        margin-top: 80px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
        padding: 15px;
        max-width: calc(100% - 30px) !important;
    }
}

@media (max-width: 1024px) {
    .download-container {
        margin-top: 90px;
        margin-left: auto;
        margin-right: auto;
        max-width: calc(100% - 60px);
    }
}

@media (max-width: 1440px) {
    .download-container {
        margin-top: 100px;
        margin-left: auto;
        margin-right: auto;
        max-width: 1200px;
    }
}


.merger-countdown {

    padding: 12px 25px;
    margin: 20px auto;
    max-width: 700px;
}

.merger-text {
    color: #ffd700;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.merger-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.merger-header {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    animation: ancient-reveal 0.5s ease-out forwards;
    margin-bottom: 10px;
    margin-top: 40px;
}

.merger-header-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom:10px;
    color: #ffffff;
    
}

.merger-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px; 
    padding: 40px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    animation: ancient-reveal 0.5s ease-out forwards;
}

.merger-unit span:first-child {
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.merger-label {
    color: #8b734b;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 2px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .merger-countdown {
        padding: 10px;
        margin: 15px auto;
        width: 90%;
    }

    .merger-timer {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .merger-unit {
        min-width: unset;
        padding: 35px 10px !important;
    }

    .merger-unit span:first-child {
        font-size: 2rem;
    }

    .merger-text {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .merger-header {
        width: 90%;
        margin: 20px auto 10px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .merger-unit {
        padding: 12px 8px;
    }

    .merger-unit span:first-child {
        font-size: 1.8rem;
    }
}

.feature-highlights {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    animation: ancient-reveal 0.8s ease-out forwards;
}

.feature-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid #8b734b;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    animation: ancient-reveal 1s ease-out forwards;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button.primary {
    background: #c89900;
    color: white;
}

.cta-button.secondary {
    background: rgba(139, 115, 75, 0.3);
    color: #ffd700;
    border: 1px solid #8b734b;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.cta-button.primary:hover {
    background: #ecba12;
}

.cta-button.secondary:hover {
    background: rgba(139, 115, 75, 0.5);
}

@media (max-width: 768px) {
    .feature-highlights {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
   
    }
    
    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
        margin-bottom:80px !important;
    }
}

.footer {
    background: rgba(0, 0, 0, 0.8);

    border-top: 1px solid rgba(139, 116, 75, 0.76);
    padding: 30px 0;
    color: #8b734b;
    font-family: 'Rajdhani', sans-serif;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 30px;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin: 8px 0;
}

.footer-section a {
    color: #8b734b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section a:hover {
    color: #dbc12d;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(139, 116, 75, 0.3);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.designer-credit {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #8b734b;
}

.designer-credit i {
    color: #c89900;
    margin: 0 3px;
}

.designer-logo {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-left: 5px;
    margin-top: -3px;
}

/* Mobile Navigation Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #aa8e5e;
}

.mobile-logo {
    height: 40px;
}

.hamburger-menu {
    background: none;
    border: none;
    color: #ffd700;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    position: fixed;
    top: 61px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    transition: left 0.3s ease;
    overflow-y: auto;
    border-right: 1px solid #aa8e5e;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-links .nav-link {
    text-decoration: none;
    width:100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-menu-links .nav-link:hover,
.mobile-menu-links .nav-link.active {
    color: #ffd700;
}

.mobile-menu {
    position: fixed;
    top: 61px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    transition: left 0.3s ease;
    overflow-y: auto;
    border-right: 1px solid #aa8e5e;
    display: flex;
    flex-direction: column;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.mobile-social {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #aa8e5e;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-social .social-link {
    color: #aa8e5e;
    font-size: 24px;
    transition: color 0.3s ease;
}

.mobile-social .social-link:hover {
    color: #ffd700;
}

.mobile-copyright {
    text-align: center;
    color: #aa8e5e;
    margin-top: 20px;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #aa8e5e;
}

/* Visibility classes */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block;
    }
    body {
        padding-top: 60px;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}