/* 80s Retro Party Landing Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    background: #0a0e27;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Geometric Background */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        linear-gradient(135deg, #0a0e27 0%, #1a1e47 100%);
    overflow: hidden;
}

.geometric-bg::before,
.geometric-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.geometric-bg::before {
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 0, 255, 0.3) 40%, rgba(255, 0, 255, 0.3) 50%, transparent 50%),
        linear-gradient(-45deg, transparent 40%, rgba(0, 255, 255, 0.3) 40%, rgba(0, 255, 255, 0.3) 50%, transparent 50%);
    background-size: 300px 300px;
    background-position: 0 0, 150px 150px;
    animation: geometricMove 20s linear infinite;
}

.geometric-bg::after {
    background: 
        linear-gradient(135deg, transparent 45%, rgba(255, 255, 0, 0.2) 45%, rgba(255, 255, 0, 0.2) 55%, transparent 55%),
        linear-gradient(225deg, transparent 45%, rgba(0, 255, 0, 0.2) 45%, rgba(0, 255, 0, 0.2) 55%, transparent 55%);
    background-size: 250px 250px;
    background-position: 0 0, 125px 125px;
    animation: geometricMove 15s linear infinite reverse;
}

@keyframes geometricMove {
    0% { background-position: 0 0, 150px 150px; }
    100% { background-position: 300px 300px, 450px 450px; }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    margin-bottom: 1rem;
    overflow: hidden;
}

.logo-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-main {
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #00d4ff,
        0 0 40px #00d4ff,
        0 0 50px #00d4ff,
        3px 3px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.title-sub {
    font-size: 3rem;
    background: linear-gradient(90deg, #ff00ff, #ff66ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.6));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 30px #00d4ff,
            0 0 40px #00d4ff,
            3px 3px 0 rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow: 
            0 0 20px #fff,
            0 0 30px #00d4ff,
            0 0 40px #00d4ff,
            0 0 50px #00d4ff,
            0 0 60px #00d4ff,
            3px 3px 0 rgba(0, 0, 0, 0.5);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Poster Frame */
.poster-frame {
    max-width: 800px;
    margin: 2rem auto;
    padding: 15px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #ffff00);
    border-radius: 15px;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.5),
        0 0 50px rgba(255, 0, 255, 0.3);
    animation: frameGlow 3s ease-in-out infinite alternate;
}

.poster-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

@keyframes frameGlow {
    from {
        box-shadow: 
            0 0 30px rgba(0, 212, 255, 0.5),
            0 0 50px rgba(255, 0, 255, 0.3);
    }
    to {
        box-shadow: 
            0 0 40px rgba(0, 212, 255, 0.7),
            0 0 60px rgba(255, 0, 255, 0.5),
            0 0 80px rgba(255, 255, 0, 0.3);
    }
}

/* Tagline */
.tagline {
    text-align: center;
    margin: 2rem 0;
}
.tagline p {
    font-size: 2rem;
    color: #ffff00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 
        2px 2px 0 rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 255, 0, 0.8);
    font-style: italic;
}

/* Event Details */
.event-details {
    max-width: 700px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid #00d4ff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.detail-item {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    font-size: 1.3rem;
}
.detail-label {
    color: #00d4ff;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 1rem;
    min-width: 150px;
}
.detail-value {
    color: #ff6600;
    font-weight: bold;
}

/* News Section */
.news {
    max-width: 700px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid #ff00ff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}
.news-title {
    font-size: 2rem;
    color: #ff00ff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
    margin-bottom: 1.5rem;
    text-align: center;
}
.news-list {
    list-style: none;
    padding: 0;
}
.news-item {
    font-size: 1.2rem;
    color: #fff;
    margin: 1.2rem 0;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
}
.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.news-link {
    color: #00d4ff;
    text-decoration: none;
    margin-left: 0.5rem;
    transition: color 0.2s;
}
.news-link:hover {
    color: #ffff00;
    text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
}
.instagram-embed-wrapper {
    margin-top: 1rem;
    text-align: center;
}

/* Masterplan */
.masterplan {
    text-align: center;
    margin: 2rem 0;
}
.masterplan p {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #ff00ff, #ff66ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-style: italic;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.6));
}

/* Location */
.location {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}
.location-title {
    font-size: 2rem;
    color: #ffff00;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}
.location-details {
    font-size: 1.8rem;
    color: #ff00ff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}
.location-details div {
    margin: 0.5rem 0;
}

/* Decorative Elements */
.decorative-elements {
    position: relative;
}
.cassette, .boombox, .star {
    position: absolute;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}
.cassette-left {
    left: 5%;
    top: -100px;
    animation-delay: 0s;
}
.boombox-right {
    right: 5%;
    top: -100px;
    animation-delay: 1s;
}
.star {
    font-size: 2rem;
}
.star-1 {
    left: 10%;
    top: 50px;
    animation-delay: 0.5s;
}
.star-2 {
    right: 15%;
    top: 100px;
    animation-delay: 1.5s;
}
.star-3 {
    left: 50%;
    top: 150px;
    animation-delay: 2s;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Reservation Form */
.reservation-section {
    max-width: 700px;
    margin: 4rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 3px solid #ff00ff;
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.4),
        inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.reservation-title {
    font-size: 3rem;
    text-align: center;
    background: linear-gradient(90deg, #00d4ff, #ff00ff, #ffff00, #00d4ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.6));
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.reservation-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #00d4ff;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.reservation-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: #ffff00;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #00d4ff;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 10px rgba(0, 212, 255, 0.3),
        inset 0 0 10px rgba(0, 212, 255, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff00ff;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        inset 0 0 15px rgba(255, 0, 255, 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #ffff00);
    background-size: 200% 200%;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    margin-top: 1rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.submit-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 50px rgba(0, 212, 255, 0.6),
        0 10px 20px rgba(0, 0, 0, 0.4);
    animation-duration: 1.5s;
}

.submit-button:active {
    transform: translateY(-2px) scale(0.98);
}

.button-text {
    display: inline-block;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        2px 2px 0 rgba(0, 0, 0, 0.5);
}

.form-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 0, 0.1);
    border: 2px solid #ffff00;
    border-radius: 10px;
    text-align: center;
}

.form-note p {
    color: #ffff00;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.form-note strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

/* Automatic Form Styling - applies to ALL forms without needing classes */
form {
    margin-top: 2rem;
}

/* Style all labels in forms automatically */
form label {
    display: block;
    font-size: 1.1rem;
    color: #ffff00;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
    letter-spacing: 0.05em;
}

/* Style all inputs and textareas in forms automatically */
form input[type="text"],
form input[type="email"],
form input[type="number"],
form input[type="url"],
form textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #00d4ff;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 10px rgba(0, 212, 255, 0.3),
        inset 0 0 10px rgba(0, 212, 255, 0.1);
    margin-bottom: 1rem;
}

/* Focus styles for all form inputs automatically */
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="number"]:focus,
form input[type="url"]:focus,
form textarea:focus {
    border-color: #ff00ff;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        inset 0 0 15px rgba(255, 0, 255, 0.2);
    transform: translateY(-2px);
}

/* Placeholder styles for all form inputs automatically */
form input::placeholder,
form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Textarea specific styles automatically */
form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Style file inputs in forms automatically */
form input[type="file"] {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #00d4ff;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    box-shadow:
        0 0 10px rgba(0, 212, 255, 0.3),
        inset 0 0 10px rgba(0, 212, 255, 0.1);
    margin-bottom: 1rem;
    cursor: pointer;
}

form input[type="file"]:focus {
    border-color: #ff00ff;
    box-shadow:
        0 0 20px rgba(255, 0, 255, 0.6),
        inset 0 0 15px rgba(255, 0, 255, 0.2);
    transform: translateY(-2px);
}

form input[type="file"]::file-selector-button {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #ffff00);
    background-size: 200% 200%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    margin-right: 1rem;
}

form input[type="file"]::file-selector-button:hover {
    box-shadow:
        0 0 20px rgba(255, 0, 255, 0.8),
        0 0 30px rgba(0, 212, 255, 0.6);
    transform: scale(1.05);
}

/* Style all submit buttons in forms automatically */
form button[type="submit"],
form input[type="submit"] {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #ffff00);
    background-size: 200% 200%;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    margin-top: 1rem;
}

/* Hover styles for all submit buttons automatically */
form button[type="submit"]:hover,
form input[type="submit"]:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 50px rgba(0, 212, 255, 0.6),
        0 10px 20px rgba(0, 0, 0, 0.4);
    animation-duration: 1.5s;
}

/* Active styles for all submit buttons automatically */
form button[type="submit"]:active,
form input[type="submit"]:active {
    transform: translateY(-2px) scale(0.98);
}

/* Blog Post */
.back-link {
    display: inline-block;
    color: #00d4ff;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: color 0.2s;
}
.back-link:hover {
    color: #ffff00;
    text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
}

.post-article {
    margin-top: 2rem;
}
.post-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: normal;
}
.post-content {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.7;
}
.post-content p {
    margin: 1rem 0;
}
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 2rem auto;
}
.post-content a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.2s;
}
.post-content a:hover {
    color: #ffff00;
    text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.8rem;
    }
    
    .logo {
        width: 30px;
        height: 30px;
    }
    
    .tagline p {
        font-size: 1.3rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        font-size: 1rem;
    }
    
    .detail-label {
        min-width: auto;
        margin-bottom: 0.5rem;
    }
    
    .masterplan p {
        font-size: 1.5rem;
    }
    
    .location-title {
        font-size: 1.5rem;
    }
    
    .location-details {
        font-size: 1.3rem;
    }
    
    .cassette, .boombox {
        font-size: 2rem;
    }
    
    .reservation-section {
        padding: 2rem 1.5rem;
    }
    
    .reservation-title {
        font-size: 2rem;
    }
    
    .reservation-subtitle {
        font-size: 1.1rem;
    }
    
    .submit-button {
        font-size: 1.2rem;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .title-main {
        font-size: 1.5rem;
    }
    
    .title-sub {
        font-size: 1.3rem;
    }
    
    .poster-frame {
        padding: 10px;
    }
    
    .event-details {
        padding: 1rem;
    }
}

/* 80s Retro Blockquote Style */
blockquote {
    background: rgba(26, 30, 71, 0.8);
    border-left: 6px solid #ff00ff; /* Neon magenta border */
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    position: relative;
    color: #00d4ff; /* Neon cyan text */
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    border-radius: 0 10px 10px 0;
    
    /* Double glow effect: magenta on the outside, cyan on the inside */
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4),
                inset 0 0 15px rgba(0, 212, 255, 0.2);
    
    /* Slightly dark text shadow to ensure readability against the bright text */
    text-shadow: 1px 1px 3px #0a0e27;
    backdrop-filter: blur(5px);
}

/* Giant glowing quote mark in the background */
blockquote::before {
    content: '"';
    font-size: 6rem;
    color: #ffff00; /* Neon yellow */
    position: absolute;
    left: 20px;
    top: -20px;
    opacity: 0.15;
    font-family: 'Arial Black', Gadget, sans-serif;
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
    pointer-events: none; /* Prevents it from interfering with text selection */
}

/* Style for any paragraph tags inside the blockquote */
blockquote p {
    position: relative;
    z-index: 1;
}

/* Optional: Cite or author attribution style */
blockquote cite {
    display: block;
    margin-top: 1rem;
    color: #fff;
    font-size: 1rem;
    font-style: normal;
    font-weight: bold;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

blockquote cite::before {
    content: '— ';
    color: #00ff00; /* Neon green dash */
}
/* Success overlay after form submission */
.success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: overlayFadeIn 0.4s ease-out;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.success-box {
    background: #0a0e27;
    border: 3px solid #00d4ff;
    box-shadow: 0 0 30px #00d4ff, 0 0 60px rgba(0, 212, 255, 0.4), inset 0 0 30px rgba(0, 212, 255, 0.05);
    border-radius: 4px;
    padding: 3rem 4rem;
    text-align: center;
    max-width: 520px;
    width: 90%;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: successBounce 1s ease-in-out infinite alternate;
}

@keyframes successBounce {
    from { transform: translateY(0); }
    to   { transform: translateY(-10px); }
}

.success-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 40px rgba(0, 255, 0, 0.5);
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: neonFlicker 3s infinite;
}

.success-message {
    color: #00d4ff;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
    line-height: 1.6;
}

.success-close {
    background: transparent;
    border: 2px solid #ff00ff;
    color: #ff00ff;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 0.8rem 2.5rem;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5), inset 0 0 10px rgba(255, 0, 255, 0.1);
    transition: all 0.2s ease;
}

.success-close:hover {
    background: rgba(255, 0, 255, 0.15);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.8), inset 0 0 15px rgba(255, 0, 255, 0.2);
    transform: scale(1.05);
}
