:root {
    --primary: #ff007f; 
    --secondary: #7b00ff; 
    --dark: #0f0f13;
    --glass-bg: rgba(20, 20, 25, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-muted: #a0a0a0;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/images/Vice_City_02.0c5.7qx17u9kl.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(15,15,19,0.9) 0%, rgba(123,0,255,0.2) 50%, rgba(255,0,127,0.2) 100%);
    z-index: -1;
}
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 16px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5vh;
}
header {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease;
}
.neon-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    background: linear-gradient(to right, #fff, #ffe6f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 0, 127, 0.5), 0 0 40px rgba(123, 0, 255, 0.3);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}
.step-section {
    display: none;
    animation: fadeIn 0.5s ease;
}
.step-section.active {
    display: block;
}
.step-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.options-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.option-card {
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.option-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 0, 127, 0.3);
}
.platform-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: 0.3s;
    filter: invert(1); 
}
.ps-logo {
    transform: scale(2.8); 
}
.option-card:hover .platform-logo {
    opacity: 1;
    transform: scale(1.1);
}
.option-card:hover .ps-logo {
    transform: scale(3.0); 
}
.region-card {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    width: 200px;
}
.edition-card {
    width: 350px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.edition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(123, 0, 255, 0.4);
    border-color: var(--secondary);
}
.edition-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: 0.5s ease;
}
.edition-card:hover .edition-img {
    transform: scale(1.05);
}
.edition-info {
    padding: 1.5rem;
    text-align: left;
}
.edition-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.edition-info .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    width: 100%;
}
.btn:hover {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.5);
}
.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    box-shadow: 0 0 30px rgba(123, 0, 255, 0.6);
}
.btn-large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}
.back-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}
.back-btn:hover {
    color: #fff;
    text-shadow: 0 0 10px #fff;
}
.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    transform: translateX(-5px);
}
.checkout-box {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    text-align: left;
}
.checkout-details p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.checkout-details .highlight {
    color: #fff;
    font-weight: 600;
}
.checkout-total {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    margin: 2rem 0;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}
.modal-overlay.hidden {
    display: none;
}
.modal-content {
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-content h2 {
    color: #00d2d3;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}
.glass-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.8rem;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}
.glass-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}
.order-code-box {
    font-family: monospace;
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    letter-spacing: 2px;
    color: #00d2d3;
    user-select: all;
}
.site-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    margin: 2rem auto;
    max-width: fit-content;
    border-radius: 30px;
}
.site-footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}
.site-footer a:hover {
    color: var(--primary);
    text-shadow: 0 0 5px var(--primary);
}
.site-footer span {
    color: var(--glass-border);
}
.chat-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.4);
    transition: 0.3s;
}
.chat-bubble:hover {
    transform: scale(1.1);
}
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 350px;
    height: 500px;
    border-radius: 16px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}
.chat-widget.closed {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}
.chat-header {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-size: cover;
    background-position: top center;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chat-msg {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
}
.msg-admin {
    align-self: flex-start;
    background: rgba(123, 0, 255, 0.3);
    border-bottom-left-radius: 2px;
}
.msg-user {
    align-self: flex-end;
    background: rgba(255, 0, 127, 0.3);
    border-bottom-right-radius: 2px;
}
.chat-footer {
    padding: 1rem;
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--glass-border);
}
.chat-footer input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #fff;
    outline: none;
}
.chat-footer button {
    background: var(--primary);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}
.chat-footer button:hover {
    transform: scale(1.1);
}
.chat-restore-btn {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    background: rgba(0,0,0,0.2);
    transition: 0.2s;
}
.chat-restore-btn:hover {
    color: #fff;
    background: rgba(0,0,0,0.4);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
