/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a5f;
    --secondary-blue: #4a90e2;
    --light-blue: #7ab8f5;
    --accent-gold: #f39c12;
    --bg-light: #f8f9fa;
    --text-dark: #2c3e50;
    --white: #ffffff;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #4a90e2 100%);
    min-height: 100vh;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

/* Wave Animation Background */
.wave-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    pointer-events: none;
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: -7px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% { 
        transform: translate3d(85px,0,0);
    }
}

/* Ship Icon Animation */
.ship-icon {
    position: fixed;
    top: 20%;
    left: 5%;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.15);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.logo-text {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-text i {
    font-size: 2rem;
    color: var(--accent-gold);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.main-icon {
    margin-bottom: 2rem;
}

.main-icon i {
    font-size: 5rem;
    color: var(--secondary-blue);
}

.rotating {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.status-message {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-message i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 3rem;
}

.countdown-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.time-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    direction: ltr;
}

.time-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    font-weight: 500;
}

.time-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Contact Section */
.contact-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(74, 144, 226, 0.2);
}

.contact-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.contact-item i {
    color: var(--secondary-blue);
    font-size: 1.3rem;
}

.contact-item a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0 1rem;
    margin-top: auto;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--accent-gold);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-icon .tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 58, 95, 0.95);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.social-icon .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(30, 58, 95, 0.95);
}

.social-icon:hover .tooltip {
    opacity: 1;
}

.copyright {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.copyright p {
    font-size: 1rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copyright i {
    color: var(--accent-gold);
}

.copyright strong {
    color: var(--secondary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .status-message {
        font-size: 1.1rem;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .time-box {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }

    .time-value {
        font-size: 2rem;
    }

    .time-label {
        font-size: 0.85rem;
    }

    .time-separator {
        font-size: 1.5rem;
    }

    .contact-item {
        font-size: 0.95rem;
        text-align: center;
    }

    .logo-text {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .logo-text i {
        font-size: 1.5rem;
    }

    .social-media {
        gap: 1rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .ship-icon {
        font-size: 2rem;
        top: 10%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }

    .main-icon i {
        font-size: 3.5rem;
    }

    .time-box {
        min-width: 60px;
    }

    .time-value {
        font-size: 1.5rem;
    }

    .countdown-title {
        font-size: 1.2rem;
    }

    .contact-title {
        font-size: 1.2rem;
    }
}
