.launch-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.launch-modal {
    position: relative;
    max-width: 1200px;
    width: 90%;
    background: rgba(10, 15, 25, 0.9);
    border: 2px solid rgba(120, 150, 180, 0.5);
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(120, 150, 180, 0.4);
    animation: slideIn 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(15px);
}

@keyframes slideIn {
    from { 
        transform: scale(0.9) translateY(-30px);
        opacity: 0;
    }
    to { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.launch-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    color: #7896b4;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.launch-modal-header {
    text-align: center;
    padding: 40px 20px 30px;
    background: linear-gradient(180deg, rgba(120, 150, 180, 0.1) 0%, transparent 100%);
}

.launch-modal-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(120, 150, 180, 0.8), 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.launch-modal-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(120, 150, 180, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.launch-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-value {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #7896b4;
    text-shadow: 0 0 15px rgba(120, 150, 180, 0.5);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0.8;
}

.launch-packages {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.launch-package {
    background: rgba(10, 15, 25, 0.9);
    border: 2px solid rgba(120, 150, 180, 0.5);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    color: inherit;
}

.launch-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(120, 150, 180, 0.4);
    border-color: #7896b4;
    text-decoration: none;
}

.package-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.3);
}

.package-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-name {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #ffffff;
}

.package-description {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    color: #fff;
    margin-bottom: 8px;
    opacity: 0.9;
}

.package-items {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    flex: 1;
}

.package-items li {
    font-family: 'Cinzel', serif;
    font-size: 0.64rem;
    color: #fff;
    padding: 1.5px 0;
    padding-left: 14px;
    position: relative;
    opacity: 0.85;
    line-height: 1.3;
}

.package-items li:before {
    content: "⚔";
    position: absolute;
    left: 0;
    font-size: 0.6rem;
    color: #7896b4;
}

.package-price {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    margin-top: auto;
    background: rgba(120, 150, 180, 0.2);
    color: #7896b4;
}

@media (max-width: 768px) {
    .launch-modal {
        width: 95%;
        max-height: 95vh;
        overflow-y: auto;
    }

    .launch-modal-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .launch-modal-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
        padding-right: 40px;
    }

    .launch-modal-subtitle {
        font-size: 0.85rem;
    }

    .launch-countdown {
        gap: 10px;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .launch-packages {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 15px;
    }

    .package-image {
        height: 150px;
    }

    .package-name {
        font-size: 1rem;
    }

    .package-price {
        font-size: 1.4rem;
    }

    .package-content {
        padding: 12px;
    }

    .package-description {
        font-size: 0.75rem;
    }

    .package-items li {
        font-size: 0.65rem;
    }

    .launch-modal-header {
        padding: 30px 15px 20px;
    }
}

@media (max-width: 480px) {
    .launch-modal-close {
        top: 8px;
        right: 8px;
        font-size: 26px;
        width: 35px;
        height: 35px;
    }

    .launch-modal-title {
        font-size: 1.2rem;
        padding-right: 35px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-item {
        min-width: 50px;
    }

    .package-image {
        height: 120px;
    }
}


