.Container-fluid {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    /* background: linear-gradient(135deg, #8B4513 0%, #A0522D 25%, #CD853F 50%, #D2691E 75%, #B8860B 100%); */
    position: relative;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
}

.jack-badge {
    position: absolute;
    top: 40px;
    left: 60px;
    /* background: rgba(139, 69, 19, 0.8); */
    color: #F5DEB3;
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid rgba(245, 222, 179, 0.3);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 10;
}

.allow-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-top: 80px;
    gap: 30px;
}

.phoenix-left-section {
    flex: 1;
    max-width: 600px;
    color: white;
}

.storm-main-title {
    font-size: 50px;
    font-weight: 500 !important;
    margin-bottom: 10px;
    line-height: 1.2;
}

.thunder-sub-title {
    font-size: 50px;
    font-weight: bold;
    color: #F5DEB3;
    margin-bottom: 15px;
    line-height: 1.1;
}

.lightning-tagline {
    font-size: 50px;
    font-weight: 550;
    margin-bottom: 30px;
    line-height: 1.2;
}

.breeze-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
}

.wave-stats-section {
    margin-bottom: 50px;
}

.ocean-stat-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 25px;
}

.tide-number {
    font-size: 72px;
    font-weight: bold;
    color: white;
    margin-right: 20px;
    line-height: 1;
}

.current-label {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.river-button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stream-primary-btn,
.stream-secondary-btn {
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.stream-primary-btn {
    background: rgba(139, 69, 19, 0.9);
    color: white;
    border-color: rgba(139, 69, 19, 0.9);
}

.stream-primary-btn:hover {
    background: rgba(160, 82, 45, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stream-secondary-btn {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.stream-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.flow-icon {
    font-size: 18px;
}

.phoenix-right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.galaxy-book-container {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.galaxy-book-container:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.galaxy-book-container img {
    width: 400px !important;
    height: 600px !important;
}

.star-book-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1) contrast(1.1);
}

.cosmos-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.cosmos-background-pattern::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cosmos-background-pattern::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245, 222, 179, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .Container-fluid {
        padding: 30px 40px;
    }

    .allow-content-wrapper {
        gap: 40px;
    }

    .storm-main-title {
        font-size: 40px;
    }

    .thunder-sub-title {
        font-size: 44px;
    }

    .lightning-tagline {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .Container-fluid {
        padding: 20px 30px;
    }

    .allow-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .phoenix-left-section {
        max-width: 100%;
    }

    .storm-main-title {
        font-size: 32px;
    }

    .thunder-sub-title {
        font-size: 36px;
    }

    .lightning-tagline {
        font-size: 28px;
    }

    .tide-number {
        font-size: 56px;
    }

    .river-button-group {
        justify-content: center;
    }

    .galaxy-book-container {
        transform: none;
    }

    .star-book-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .jack-badge {
        top: 20px;
        left: 30px;
        padding: 10px 20px;
        font-size: 12px;
    }

    .storm-main-title {
        font-size: 28px;
    }

    .thunder-sub-title {
        font-size: 30px;
    }

    .lightning-tagline {
        font-size: 24px;
    }

    .breeze-description {
        font-size: 16px;
    }

    .river-button-group {
        flex-direction: column;
        align-items: center;
    }

    .stream-primary-btn,
    .stream-secondary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}