:root {
    --black: #0A0A0A;
    --dark-purple: #1A0A2E;
    --purple: #4B2E83;
    --light-purple: #6A4C93;
    --accent: #5D3FD3;
    --white: #FFFFFF;
    --gray-text: rgba(255, 255, 255, 0.8);
    --dark-gray-card: rgba(20, 20, 20, 0.7);
    --border-color: rgba(75, 46, 131, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--dark-purple) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, var(--purple) 0%, transparent 20%);
    overflow-x: hidden;
}

header {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

@keyframes glow-purple {
    from { text-shadow: 0 0 10px rgba(75, 46, 131, 0.3); }
    to { text-shadow: 0 0 20px rgba(75, 46, 131, 0.6), 0 0 30px rgba(75, 46, 131, 0.4); }
}

.join-btn {
    background: linear-gradient(90deg, var(--purple), var(--dark-purple));
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
}

.join-btn:hover {
    background: linear-gradient(90deg, var(--light-purple), var(--purple));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 46, 131, 0.3);
}

.unban-container {
    display: flex;
    flex: 1;
    padding: 2rem;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
}

.fish-container {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70vh;
    z-index: -1;
}

.fish-image {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(75, 46, 131, 0.7));
    animation: float 6s ease-in-out infinite;
}

.fish-label {
    position: absolute;
    right: 20px;
    top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.content {
    flex: 0 0 500px;
    padding: 2.5rem;
    text-align: center;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    left: 0px;
    margin-right: -30px;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--light-purple), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(93, 63, 211, 0.3);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 2rem 0;
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.price::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -80px;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent));
}

.price::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -80px;
    width: 70px;
    height: 3px;
    background: linear-gradient(to left, transparent, var(--accent));
}

.description {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.benefits li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    list-style: none;
}

.benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.buy-btn {
    background: linear-gradient(90deg, var(--accent), var(--purple));
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.buy-btn:hover {
    background: linear-gradient(90deg, var(--purple), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(93, 63, 211, 0.4);
}

.payment-methods {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-method {
    width: 50px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.payment-method img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) brightness(150%);
    transition: all 0.3s;
}

.payment-method:hover img {
    filter: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 1024px) {
    .unban-container {
        justify-content: center;
        padding: 2rem 1rem;
    }
    .content {
        margin-right: 0;
        flex: 0 0 450px;
    }
    .fish-container {
        width: 35%;
    }
    .title { font-size: 2.2rem; }
    .price { font-size: 3rem; }
}

@media (max-width: 768px) {
    .unban-container {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 1rem;
    }
    .fish-container {
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: 1rem;
    }
    .fish-image {
        height: 100%;
        width: auto;
    }
    .content {
        flex: 1;
        width: 100%;
        max-width: 500px;
        padding: 1.5rem;
    }
    .title { font-size: 2rem; }
    .price { 
        font-size: 2.5rem;
        margin: 1.5rem 0;
    }
    .price::before,
    .price::after { width: 50px; }
}

@media (max-width: 480px) {
    header { flex-direction: column; padding: 1rem; }
    nav { margin-top: 1rem; flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .logo { font-size: 1.5rem; }
    .content { padding: 1.25rem; }
    .title { font-size: 1.8rem; }
    .price { font-size: 2.2rem; }
    .description { font-size: 1rem; }
    .buy-btn { font-size: 1rem; padding: 0.8rem 2rem; }
    .payment-methods { gap: 1rem; }
    .payment-method { width: 45px; height: 30px; }
}