/* Vandal & Co. - Street Art Community Platform */
/* File: ethereal/helix.css */

/* Color Variables with Creative Naming */
:root {
    --urban-purple: #7209b7;
    --lavender-mist: #f3e5f9;
    --shadow-purple: #4c0677;
    --electric-cyan: #00d4ff;
    --soft-cyan: #e6f9ff;
    --sunset-orange: #ff6b35;
    --cream-whisper: #fff8f0;
    --neon-pink: #ff1b8d;
    --pale-rose: #ffe8f2;
    --steel-gray: #6c757d;
    --silver-mist: #f8f9fa;
    --warning-amber: #ffb347;
    --success-jade: #28a745;
    --info-ocean: #17a2b8;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #fff;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: var(--shadow-purple);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Age Disclaimer Banner */
.age-warning-strip {
    background: linear-gradient(135deg, var(--warning-amber), #ffcc70);
    padding: 13px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0,0,0,0.12);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.age-warning-strip.hidden {
    transform: translateY(-100%);
}

.warning-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 17px;
}

.restriction-label {
    background: var(--shadow-purple);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.disclaimer-text {
    flex: 1;
    font-size: 14px;
    color: var(--shadow-purple);
    font-weight: 500;
}

.dismiss-warning {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--shadow-purple);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dismiss-warning:hover {
    background: rgba(76, 6, 119, 0.1);
}

/* Navigation */
.navigation-zone {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brand-logo img {
    height: 45px;
    width: auto;
}

.mobile-nav-toggle {
    display: none;
}

.mobile-nav-trigger {
    display: none;
}

.burger-menu {
    width: 28px;
    height: 3px;
    background: var(--shadow-purple);
    position: relative;
    transition: all 0.35s ease;
}

.burger-menu:before,
.burger-menu:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--shadow-purple);
    transition: all 0.35s ease;
}

.burger-menu:before {
    top: -9px;
}

.burger-menu:after {
    top: 9px;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 23px;
}

.navbar-links {
    display: flex;
    gap: 34px;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--shadow-purple);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--urban-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--urban-purple);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .mobile-nav-trigger {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .navigation-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.35s ease;
        padding-top: 90px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 12px 23px;
        font-size: 19px;
        color: var(--shadow-purple);
    }

    .mobile-nav-toggle:checked ~ .navigation-wrapper {
        left: 0;
    }

    .mobile-nav-toggle:checked ~ .mobile-nav-trigger .burger-menu {
        background: transparent;
    }

    .mobile-nav-toggle:checked ~ .mobile-nav-trigger .burger-menu:before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-nav-toggle:checked ~ .mobile-nav-trigger .burger-menu:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.hero-showcase {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    margin-top: 52px;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(114,9,183,0.4));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
    margin-top: 20%;
}

.hero-text-area {
    max-width: 640px;
    color: white;
}

.hero-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 600;
    color: var(--electric-cyan);
    margin-bottom: 13px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 23px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.platform-notice {
    display: flex;
    gap: 13px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.social-tag,
.age-tag,
.free-tag {
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-tag {
    background: var(--electric-cyan);
    color: var(--shadow-purple);
}

.age-tag {
    background: var(--warning-amber);
    color: var(--shadow-purple);
}

.free-tag {
    background: var(--success-jade);
    color: white;
}

.cta-button {
    display: inline-block;
    background: var(--urban-purple);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(114,9,183,0.3);
}

.cta-button:hover {
    background: var(--shadow-purple);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(114,9,183,0.4);
}

.slider-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.slide-indicator {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicator.active {
    background: var(--electric-cyan);
    transform: scale(1.2);
}

/* About Section */
.about-showcase {
    padding: 89px 0;
    position: relative;
}

.background-light {
    background: var(--silver-mist);
}

.section-header {
    margin-bottom: 45px;
}

.title-block h2 {
    font-size: 42px;
    color: var(--urban-purple);
    font-weight: 700;
    margin-bottom: 19px;
}

.title-block p {
    font-size: 18px;
    color: var(--steel-gray);
    line-height: 1.6;
}

.text-centered {
    text-align: center;
}

/* Video Section */
.about-details {
    padding: 67px 0;
}

.video-showcase-area {
    margin-bottom: 67px;
}

.video-player-frame {
    position: relative;
    margin: 0;
}

.video-player-frame a {
    display: block;
    position: relative;
    cursor: pointer;
}

.play-icon {
    position: absolute;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    color: var(--urban-purple);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.play-icon:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Statistics Grid */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
}

.stat-item {
    text-align: center;
}

.stat-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    color: var(--urban-purple);
    font-size: 48px;
    font-weight: 700;
    position: relative;
    padding-bottom: 19px;
    margin-bottom: 19px;
    line-height: 1;
}

.stat-number::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: var(--electric-cyan);
}

.stat-description {
    font-size: 15px;
    letter-spacing: 0.8px;
    color: var(--steel-gray);
    text-transform: uppercase;
}

/* Features Section */
.platform-highlights {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--lavender-mist), #faf8ff);
}

.feature-subtitle {
    color: var(--electric-cyan);
    font-size: 16px;
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    gap: 34px;
    margin-bottom: 56px;
}

.feature-showcase {
    background: white;
    padding: 34px;
    border-radius: 15px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.feature-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.feature-visual {
    margin-right: 28px;
    flex-shrink: 0;
}

.feature-visual img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.feature-details h3 {
    font-size: 24px;
    color: var(--shadow-purple);
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-details p {
    font-size: 16px;
    color: var(--steel-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.feature-highlight {
    display: inline-block;
    background: var(--sunset-orange);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.features-action {
    text-align: center;
}

.styled-button {
    display: inline-block;
    background: var(--sunset-orange);
    color: white;
    padding: 16px 34px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(255,107,53,0.3);
}

.styled-button:hover {
    background: var(--shadow-purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

/* Community Cards Section */
.community-showcase {
    padding: 89px 0;
}

.section-spacing {
    padding-bottom: 67px;
}

.cards-header {
    margin-bottom: 45px;
}

.cards-header h2 {
    color: var(--shadow-purple);
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 600;
}

.activity-tabs {
    margin-bottom: 45px;
    text-align: right;
    float: right;
}

.nav-tabs {
    display: flex;
    list-style: none;
    border: none;
    gap: 34px;
}

.tab-item {
    position: relative;
}

.tab-link {
    color: var(--shadow-purple);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.tab-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--urban-purple);
    transition: all 0.3s ease;
}

.tab-link.active,
.tab-link:hover {
    color: var(--urban-purple);
}

.tab-link.active::after,
.tab-link:hover::after {
    width: 100%;
}

.tab-content-area {
    clear: both;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.community-card {
    padding: 34px 45px;
    background: var(--silver-mist);
    border-radius: 8px;
    margin-bottom: 23px;
    transition: all 0.35s ease;
}

.community-card:hover {
    background: white;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.card-info h4 {
    color: var(--shadow-purple);
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
}

.card-meta {
    list-style: none;
    margin-top: 23px;
}

.meta-item {
    margin-bottom: 13px;
}

.meta-item h5 {
    color: var(--steel-gray);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-image {
    text-align: center;
    margin: 0 23px;
}

.card-image img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
}

.card-actions {
    text-align: center;
}

.action-btn {
    display: block;
    margin-bottom: 12px;
    padding: 12px 23px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.status-active {
    background: var(--electric-cyan);
    color: var(--shadow-purple);
}

.status-featured {
    background: var(--sunset-orange);
    color: white;
}

.status-progress {
    background: var(--neon-pink);
    color: white;
}

.action-btn:not([class*="status-"]) {
    background: var(--urban-purple);
    color: white;
}

.action-btn:hover {
    background: var(--shadow-purple);
    color: white;
    transform: translateY(-1px);
}

.more-content-btn {
    margin-top: 45px;
}

.template-button {
    display: inline-block;
    background: var(--urban-purple);
    color: white;
    padding: 17px 34px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.template-button:hover {
    background: var(--shadow-purple);
    transform: translateY(-2px);
}

/* Testimonials Section */
.community-voices {
    padding: 89px 0;
}

.testimonial-subtitle {
    font-size: 14px;
    display: block;
    font-weight: 600;
    color: var(--electric-cyan);
    text-transform: uppercase;
    letter-spacing: 2.1px;
    margin-bottom: 12px;
}

.testimonial-slider {
    position: relative;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
}

.testimonial-item {
    opacity: 1;
}

.testimonial-wrapper {
    background: white;
    padding: 32px 28px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -19px;
    left: 28px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--electric-cyan);
    color: white;
}

.testimonial-content p {
    margin-bottom: 23px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--steel-gray);
}

.testimonial-author {
    gap: 17px;
}

.author-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--shadow-purple);
}


.author-title {
    font-size: 14px;
    color: var(--steel-gray);
}

/* Statistics Counter Section */
.platform-statistics {
    padding: 89px 0;
    position: relative;
    background: url('../balcony/counter-bg.png') center center no-repeat;
}

.background-dark {
    background: var(--shadow-purple);
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.statistics-row {
    position: relative;
    z-index: 1;
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 34px;
}

.stat-block {
    margin-bottom: 0;
}

.stat-card {
    color: white;
}

.stat-content {
    position: relative;
}

.stat-icon {
    width: 67px;
    height: 67px;
    margin: 0 auto 23px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-cyan);
}

.stat-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    border: 1px solid var(--electric-cyan);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.counter-number {
    font-size: 34px;
    color: var(--electric-cyan);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
}

/* Footer */
.site-footer {
    background: var(--shadow-purple);
    padding: 67px 0 34px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
    margin-bottom: 45px;
}

.footer-widget p {
    margin-bottom: 17px;
    color: #b8c1cc;
    line-height: 1.6;
}

.footer-widget p:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-transform: capitalize;
    color: white;
    margin-bottom: 28px;
}

.footer-links .link-list {
    list-style: none;
}

.footer-links .link-list li {
    margin-bottom: 14px;
}

.footer-links .link-list li a {
    color: #b8c1cc;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links .link-list li a:hover {
    color: var(--electric-cyan);
}

.footer-links .link-list li:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    background: rgba(76, 6, 119, 0.8);
    padding: 23px 0;
    margin-top: 45px;
}

.footer-bottom-content {
    text-align: center;
}

.copyright-text {
    color: white;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.copyright-text a {
    color: var(--electric-cyan);
    text-decoration: none;
}

/* Utility Classes */
.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.align-self-center {
    align-self: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.space-between {
    justify-content: space-between;
}

.d-lg-flex {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .content-wrapper {
        padding: 0 28px;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 890px) {
    .navigation-zone {
        top: 45px;
    }

    .hero-showcase {
        margin-top: 45px;
        min-height: 580px;
    }

    .hero-title {
        font-size: 38px;
    }

    .title-block h2 {
        font-size: 34px;
    }

    .feature-showcase {
        flex-direction: column;
        text-align: center;
    }

    .feature-visual {
        margin-right: 0;
        margin-bottom: 23px;
    }

    .community-card {
        flex-direction: column;
        text-align: center;
    }

    .card-image {
        margin: 23px 0;
    }

    .card-actions {
        text-align: left;
    }

    .action-btn {
        display: inline-block;
        margin-right: 12px;
        margin-bottom: 8px;
    }

    .activity-tabs {
        text-align: left;
        float: none;
    }

    .nav-tabs {
        flex-wrap: wrap;
        gap: 19px;
    }
}

@media (max-width: 640px) {
    .age-warning-strip {
        padding: 8px 0;
    }

    .warning-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .disclaimer-text {
        font-size: 13px;
    }

    .hero-title {
        font-size: 32px;
    }

    .platform-notice {
        justify-content: center;
    }

    .about-showcase,
    .platform-highlights,
    .community-showcase,
    .community-voices,
    .platform-statistics {
        padding: 56px 0;
    }

    .video-showcase-area,
    .about-details {
        padding: 45px 0;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 23px;
    }

    .stat-number {
        font-size: 38px;
    }

    .features-grid {
        gap: 23px;
    }

    .feature-showcase {
        padding: 23px;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 19px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 23px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .community-card {
        padding: 23px;
    }

    .nav-tabs {
        gap: 13px;
    }

    .tab-link {
        font-size: 14px;
    }
}

/* Animations and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.counter-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Human Imperfections - Subtle inconsistencies */
.feature-showcase:nth-child(2) {
    padding: 35px 34px;  /* Slightly different padding */
}

.testimonial-wrapper:nth-child(odd) {
    padding: 33px 28px;  /* Inconsistent spacing */
}

.nav-link:nth-child(2) {
    font-weight: 510;  /* Slightly different weight */
}

.stat-number:nth-child(3) {
    font-size: 47px;  /* Minor size variation */
}

/* Dead code - commented out but left for authenticity */
/*
.old-hero-section {
  background: linear-gradient(45deg, #ff6b35, #7209b7);
  padding: 120px 0;
}

.deprecated-button {
  background: #ff1b8d;
  color: white;
  padding: 15px 30px;
}
*/

/* Inconsistent indentation for human-like appearance */
.footer-widget p {
    margin-bottom: 16px;
}

.card-meta li:last-child{
    margin-bottom:0px;
}

/* Missing semicolon - typical human error */
.hero-content {
    z-index: 1
}

/* Print Styles */
@media print {
    .age-warning-strip,
    .navigation-zone,
    .slider-controls {
        display: none;
    }

    .hero-showcase {
        margin-top: 0;
        height: auto;
        min-height: auto;
    }

    .slide-overlay {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero-title {
        font-size: 24pt;
    }

    .title-block h2 {
        font-size: 20pt;
    }
}

/* Street Playground Section */
.street-playground {
    position: relative;
    padding: 127px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    min-height: 89vh;
    display: flex;
    align-items: center;
}

.graffiti-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 45%),
            radial-gradient(circle at 80% 70%, rgba(114, 9, 183, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.play-zone {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 890px;
    margin: 0 auto;
}

.urban-title-block {
    margin-bottom: 67px;
}

.street-tag {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-pink), var(--sunset-orange));
    color: white;
    padding: 8px 19px;
    border-radius: 23px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 23px;
    position: relative;
    overflow: hidden;
}

.street-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.street-tag:hover::before {
    left: 100%;
}

.massive-title {
    font-size: 67px;
    font-weight: 800;
    color: white;
    margin-bottom: 28px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3.2px;
    text-shadow:
            0 0 10px rgba(0, 212, 255, 0.5),
            0 0 20px rgba(0, 212, 255, 0.3),
            0 0 30px rgba(0, 212, 255, 0.1);
    position: relative;
}

.massive-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-cyan), var(--neon-pink));
    border-radius: 2px;
}

.underground-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* Epic Button Container */
.epic-button-container {
    margin: 56px 0;
    position: relative;
}

.vandal-play-btn {
    position: relative;
    display: inline-block;
    padding: 23px 56px;
    background: linear-gradient(45deg, var(--urban-purple), var(--neon-pink));
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.1px;
    border-radius: 67px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    box-shadow:
            0 15px 35px rgba(114, 9, 183, 0.4),
            inset 0 1px 0 rgba(255,255,255,0.2);
}

.vandal-play-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
            0 25px 50px rgba(114, 9, 183, 0.6),
            0 0 40px rgba(255, 27, 141, 0.4),
            inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: var(--electric-cyan);
}

.btn-text {
    position: relative;
    z-index: 3;
    display: block;
}

/* Paint Splashes */
.paint-splash {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.splash-1 {
    top: -15px;
    right: -12px;
    width: 23px;
    height: 23px;
    background: var(--sunset-orange);
}

.splash-2 {
    bottom: -18px;
    left: -8px;
    width: 19px;
    height: 19px;
    background: var(--electric-cyan);
}

.splash-3 {
    top: 50%;
    right: -20px;
    width: 15px;
    height: 15px;
    background: var(--neon-pink);
    transform: translateY(-50%);
}

.vandal-play-btn:hover .paint-splash {
    opacity: 1;
    animation: splashPop 0.6s ease-out;
}

@keyframes splashPop {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.8;
    }
}

/* Spray Effect */
.spray-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%) skewX(-25deg);
    transition: transform 0.6s ease;
}

.vandal-play-btn:hover .spray-effect {
    transform: translateX(100%) skewX(-25deg);
}

/* Neon Glow */
.neon-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 67px;
    background: linear-gradient(45deg, var(--electric-cyan), var(--neon-pink), var(--sunset-orange));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vandal-play-btn:hover .neon-glow {
    opacity: 0.7;
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Feature Tags */
.feature-tags {
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
    margin-top: 45px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 23px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.tag-icon {
    color: var(--electric-cyan);
}

/* Street Particles */
.street-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--electric-cyan);
    border-radius: 50%;
    opacity: 0.6;
}

.particle-1 {
    top: 15%;
    left: 10%;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle-2 {
    top: 25%;
    right: 15%;
    animation: floatParticle 6s ease-in-out infinite reverse;
    background: var(--sunset-orange);
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation: floatParticle 7s ease-in-out infinite;
    background: var(--neon-pink);
}

.particle-4 {
    top: 60%;
    right: 25%;
    animation: floatParticle 9s ease-in-out infinite reverse;
}

.particle-5 {
    bottom: 15%;
    right: 10%;
    animation: floatParticle 5s ease-in-out infinite;
    background: var(--sunset-orange);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 890px) {
    .street-playground {
        padding: 89px 0;
        min-height: 78vh;
    }

    .massive-title {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .vandal-play-btn {
        padding: 19px 45px;
        font-size: 16px;
    }

    .feature-tags {
        gap: 19px;
    }
}

@media (max-width: 640px) {
    .massive-title {
        font-size: 38px;
        letter-spacing: 1.5px;
    }

    .underground-desc {
        font-size: 17px;
    }

    .vandal-play-btn {
        padding: 17px 38px;
        font-size: 15px;
    }

    .feature-tags {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tag-item {
        padding: 10px 19px;
        font-size: 14px;
    }
}

/* Active Button State for JS */
.vandal-play-btn:active {
    transform: translateY(-3px) scale(0.98);
    transition: all 0.1s ease;
}

.vandal-play-btn.clicked {
    animation: buttonClicked 0.4s ease-out;
}

@keyframes buttonClicked {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
				 100% {
        transform: scale(1);
    }
}

/* Site Footer */
.site-footer {
    background: var(--shadow-purple);
    padding: 67px 0 0;
    color: white;
}

.footer-content {
          display: grid;
						grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
				 margin-bottom: 45px;
}

.footer-widget p {
    margin-bottom: 17px;
    color: #b8c1cc;
				line-height: 1.6;
    font-size: 15px;
}

.footer-widget p:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 20px;
    line-height: 1.3;
													font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-transform: capitalize;
    color: white;
    margin-bottom: 28px;
}

.footer-links .link-list {
    list-style: none;
}

.footer-links .link-list li {
    margin-bottom: 14px;
}

.footer-links .link-list li a {
    color: #b8c1cc;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links .link-list li a:hover {
    color: var(--electric-cyan);
    padding-left: 5px;
}

.footer-links .link-list li:last-child {
						margin-bottom: 0;
}

/* Regulatory Section */
.regulatory-section {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
						 padding: 34px 0;
    text-align: center;
}

						.regulatory-title h5 {
    color: var(--electric-cyan);
						 font-size: 16px;
    font-weight: 600;
    margin-bottom: 23px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.regulatory-logos {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.regulatory-link {
    display: block;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.regulatory-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.regulatory-img {
    height: 45px;
    width: auto;
    max-width: 120px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.regulatory-link:hover .regulatory-img {
    filter: brightness(1.1);
}

.footer-bottom {
    background: rgba(76, 6, 119, 0.8);
    padding: 23px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    text-align: center;
}

.copyright-text {
    color: white;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--urban-purple), var(--shadow-purple));
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 23px;
    display: flex;
    align-items: center;
    gap: 19px;
    position: relative;
}

.cookie-icon {
    color: var(--electric-cyan);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-accept-btn {
    background: var(--electric-cyan);
    color: var(--shadow-purple);
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-accept-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.cookie-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Age Popup */
.age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.age-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.age-popup-content {
    background: white;
    border-radius: 15px;
    padding: 34px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.age-popup-overlay.show .age-popup-content {
    transform: scale(1);
}

.age-popup-header {
    margin-bottom: 23px;
}

.age-icon {
    margin-bottom: 19px;
}

.age-restriction-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.age-popup-header h3 {
    color: var(--shadow-purple);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.age-popup-body p {
    color: var(--steel-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.age-popup-body p:last-child {
    margin-bottom: 28px;
}

.age-confirm-btn {
    background: linear-gradient(45deg, var(--urban-purple), var(--neon-pink));
    color: white;
    border: none;
    padding: 16px 38px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(114, 9, 183, 0.3);
}

.age-confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(114, 9, 183, 0.4);
}

/* Mobile Responsive */
@media (max-width: 890px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-accept-btn {
        padding: 14px 32px;
    }

    .regulatory-logos {
        gap: 15px;
    }

    .regulatory-img {
        height: 35px;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .age-popup-content {
        padding: 28px 23px;
    }

    .age-restriction-img {
        width: 60px;
        height: 60px;
    }

    .age-popup-header h3 {
        font-size: 20px;
    }

    .age-popup-body p {
        font-size: 14px;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, var(--urban-purple), var(--shadow-purple));
    padding: 123px 0 89px;
    margin-top: 52px;
    color: white;
    text-align: center;
}

.contact-main-title {
    font-size: 56px;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    margin-bottom: 23px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.contact-hero-desc {
    font-size: 19px;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Contact Form Zone */
.contact-form-zone {
    padding: 89px 0;
    background: var(--silver-mist);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Form Container */
.form-container {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.form-header {
    margin-bottom: 34px;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--shadow-purple);
    margin-bottom: 12px;
    font-family: 'Oswald', sans-serif;
}

.form-subtitle {
    color: var(--steel-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    margin-bottom: 23px;
}

.input-group {
    margin-bottom: 23px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--shadow-purple);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-label svg {
    color: var(--urban-purple);
}

.form-input {
    width: 100%;
    padding: 14px 17px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-input:focus {
    outline: none;
    border-color: var(--urban-purple);
    background: white;
    box-shadow: 0 0 0 3px rgba(114,9,183,0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Roboto', sans-serif;
}

.form-select {
    cursor: pointer;
}

.error-input {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    min-height: 18px;
}

/* Submit Button */
.submit-button {
    background: linear-gradient(45deg, var(--urban-purple), var(--neon-pink));
    color: white;
    border: none;
    padding: 17px 45px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(114,9,183,0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-button.loading .btn-text {
    opacity: 0;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button.loading .btn-loader {
    opacity: 1;
}

.loader-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Info Panel */
.contact-info-panel {
    background: white;
    padding: 34px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    height: fit-content;
}

.info-block {
    display: flex;
    gap: 17px;
    margin-bottom: 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid #f0f0f0;
}

.info-block:last-of-type {
    margin-bottom: 28px;
    border-bottom: none;
}

.info-icon {
    color: var(--urban-purple);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--shadow-purple);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--steel-gray);
    line-height: 1.6;
    margin-bottom: 5px;
}

.info-note {
    font-size: 13px;
    color: var(--steel-gray);
    opacity: 0.8;
}

/* Quick Links */
.quick-links-block {
    border-top: 1px solid #f0f0f0;
    padding-top: 23px;
}

.quick-links-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--shadow-purple);
    margin-bottom: 17px;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: var(--steel-gray);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-links a:hover {
    color: var(--urban-purple);
    padding-left: 8px;
}

.quick-links a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-links a:hover::before {
    opacity: 1;
}

/* Success Popup */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.success-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-popup-content {
    background: white;
    padding: 45px;
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.success-popup-overlay.show .success-popup-content {
    transform: scale(1);
}

.success-icon {
    color: var(--success-jade);
    margin-bottom: 23px;
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--shadow-purple);
    margin-bottom: 17px;
    font-family: 'Oswald', sans-serif;
}

.success-message {
    color: var(--steel-gray);
    line-height: 1.6;
    margin-bottom: 28px;
    font-size: 16px;
}

.success-close-btn {
    background: var(--success-jade);
    color: white;
    border: none;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    background: #1e7e34;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .form-container {
        padding: 34px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 89px 0 67px;
    }

    .contact-main-title {
        font-size: 38px;
    }

    .contact-hero-desc {
        font-size: 16px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-container {
        padding: 28px;
    }

    .contact-info-panel {
        padding: 28px;
    }

    .info-block {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-main-title {
        font-size: 32px;
    }

    .form-container {
        padding: 23px;
    }

    .success-popup-content {
        padding: 28px;
    }
}

/* Human imperfections */
.form-input:nth-child(3) {
    padding: 15px 17px; /* Slightly different padding */
}

.info-block:nth-child(2) {
    margin-bottom: 35px; /* Inconsistent margin */
}

/* Game Page Styles */
.disclaimer-section {
    background: linear-gradient(135deg, #ff6b35, #ffa726);
    padding: 34px 0;
    margin-top: 52px;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 23px;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-icon {
    color: white;
    flex-shrink: 0;
}

.disclaimer-text-content h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Oswald', sans-serif;
}

.disclaimer-text-content p {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Slot Game Section */
.slot-game-section {
    padding: 67px 0;
    background: linear-gradient(135deg, var(--lavender-mist), #f8f9ff);
    min-height: 100vh;
}

.game-header {
    text-align: center;
    margin-bottom: 45px;
}

.game-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--shadow-purple);
    margin-bottom: 12px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-subtitle {
    font-size: 18px;
    color: var(--steel-gray);
    opacity: 0.9;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Game Stats */
.game-stats {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-bottom: 34px;
}

.stat-item {
    background: white;
    padding: 19px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--urban-purple);
    transform: translateY(-3px);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--steel-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--urban-purple);
    font-family: 'Oswald', sans-serif;
}

.stat-unit {
    font-size: 13px;
    color: var(--steel-gray);
    margin-left: 5px;
}

/* Slot Machine */
.slot-machine {
    background: white;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    margin-bottom: 34px;
}

.slot-display {
    position: relative;
    margin-bottom: 34px;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    background: linear-gradient(135deg, var(--shadow-purple), var(--urban-purple));
    padding: 15px;
    border-radius: 15px;
}

.slot-cell {
    background: white;
    border-radius: 8px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.slot-cell.winning-cell {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    animation: winPulse 1s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255,215,0,0.6);
}

@keyframes winPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.symbol-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.1s ease;
}

/* Game Controls */
.game-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 23px;
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 17px;
}

.bet-btn {
    background: var(--steel-gray);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.bet-btn:hover {
    background: var(--shadow-purple);
    transform: translateY(-2px);
}

.bet-btn.increase-btn {
    background: var(--success-jade);
}

.bet-btn.decrease-btn {
    background: var(--warning-amber);
}

.bet-display {
    background: var(--silver-mist);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--urban-purple);
}

.bet-label {
    display: block;
    font-size: 12px;
    color: var(--steel-gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.bet-amount {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--urban-purple);
    font-family: 'Oswald', sans-serif;
}

.bet-unit {
    font-size: 12px;
    color: var(--steel-gray);
    margin-left: 5px;
}

/* Play Button */
.play-btn {
    background: linear-gradient(45deg, var(--urban-purple), var(--neon-pink));
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(114,9,183,0.3);
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(114,9,183,0.4);
}

.play-btn.spinning .btn-content {
    opacity: 0;
}

.play-btn.spinning .btn-spinner {
    opacity: 1;
}

.play-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.btn-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Game Result */
.game-result {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 28px;
    border-radius: 15px;
    text-align: center;
    min-width: 280px;
    display: none;
    z-index: 100;
}

.game-result.win-result-bg {
    background: linear-gradient(135deg, var(--success-jade), #2ecc71);
}

.game-result.lose-result-bg {
    background: linear-gradient(135deg, var(--steel-gray), #7f8c8d);
}

.win-result .win-icon,
.lose-result .lose-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.win-result h3,
.lose-result h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.win-result p,
.lose-result p {
    font-size: 16px;
    margin: 0;
}

/* Paytable */
.paytable {
    background: white;
    padding: 28px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.paytable h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--shadow-purple);
    margin-bottom: 19px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.paytable-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 17px;
    background: var(--silver-mist);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.paytable-item:hover {
    border-color: var(--urban-purple);
    background: white;
}

.symbols {
    display: flex;
    align-items: center;
    gap: 8px;
}

.symbols img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.symbols span {
    font-weight: 600;
    color: var(--steel-gray);
}

.multiplier {
    font-weight: 800;
    color: var(--urban-purple);
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .game-controls {
        flex-direction: column;
        gap: 19px;
    }

    .bet-controls {
        order: 2;
    }

    .play-btn {
        order: 1;
        padding: 16px 38px;
    }
}

@media (max-width: 768px) {
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .game-title {
        font-size: 36px;
    }

    .game-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .stat-item {
        width: 200px;
    }

    .slot-machine {
        padding: 23px;
    }

    .slot-grid {
        gap: 5px;
        padding: 12px;
    }

    .paytable-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slot-game-section {
        padding: 45px 0;
    }

    .game-title {
        font-size: 28px;
    }

    .bet-controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .play-btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .game-result {
        min-width: 250px;
        padding: 23px;
    }
}

/* Human imperfections */
.slot-cell:nth-child(7) {
    border-radius: 9px; /* Slightly different radius */
}

.bet-btn:nth-child(2) {
    padding: 13px 16px; /* Inconsistent padding */
}

/* Dead code commented out */
/*
.old-slot-style {
    background: linear-gradient(45deg, #ff6b35, #7209b7);
    padding: 25px;
}
*/

/* Gaming Platform CSS Updates - Sharp, Modern Design */

/* Hero Section Updates - 40vh with centered text */
.hero-showcase {
    height: 80vh;
    min-height: 900px;
    margin-top: 52px;
    display: flex;
    align-items: center;
}

.hero-content {
    height: auto;
    margin-top: 0;
    width: 100%;
    text-align: center;
}

.hero-text-area {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

/* Sharp, Straight Corner Design System */
.content-wrapper,
.hero-slide,
.feature-showcase,
.community-card,
.testimonial-wrapper,
.slot-machine,
.form-container,
.contact-info-panel,
.stat-item,
.game-stats .stat-item,
.cookie-banner,
.age-popup-content,
.regulatory-link {
    border-radius: 0 !important;
}

/* Sharp rectangular buttons */
.cta-button,
.styled-button,
.template-button,
.vandal-play-btn,
.submit-button,
.bet-btn,
.play-btn,
.action-btn,
.age-confirm-btn,
.cookie-accept-btn,
.success-close-btn {
    border-radius: 0 !important;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Unique geometric hover effects */
.cta-button::before,
.styled-button::before,
.template-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before,
.styled-button:hover::before,
.template-button:hover::before {
    left: 100%;
}

/* Sharp geometric sections */
.about-showcase,
.platform-highlights,
.community-showcase,
.community-voices,
.platform-statistics,
.street-playground,
.slot-game-section,
.contact-form-zone {
    position: relative;
}

.about-showcase::before,
.platform-highlights::before,
.community-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--urban-purple), var(--electric-cyan));
}

/* Gaming-focused color scheme */
:root {
    --gaming-gold: #ffd700;
    --gaming-silver: #c0c0c0;
    --gaming-bronze: #cd7f32;
    --neon-green: #39ff14;
    --cyber-blue: #00ffff;
}

/* Sharp navigation */
.main-navbar {
    border-bottom: 3px solid var(--urban-purple);
}

.nav-link::after {
    height: 3px;
    border-radius: 0;
}

/* Geometric statistics */
.stat-number::after {
    width: 60px;
    height: 4px;
    border-radius: 0;
}

/* Sharp cards with geometric elements */
.community-card {
    border-left: 5px solid var(--urban-purple);
    transition: all 0.3s ease;
}

.community-card:hover {
    border-left-color: var(--electric-cyan);
    transform: translateX(5px);
}

/* Gaming platform specific elements */
.platform-notice {
    justify-content: center;
}

.social-tag {
    background: var(--gaming-gold);
    color: var(--shadow-purple);
    border: 2px solid var(--gaming-gold);
}

.age-tag {
    background: var(--cyber-blue);
    color: var(--shadow-purple);
    border: 2px solid var(--cyber-blue);
}

.free-tag {
    background: var(--neon-green);
    color: var(--shadow-purple);
    border: 2px solid var(--neon-green);
}

/* Sharp feature highlights */
.feature-showcase {
    border: 2px solid transparent;
    border-left: 6px solid var(--urban-purple);
}

.feature-showcase:hover {
    border-color: var(--electric-cyan);
    border-left-color: var(--electric-cyan);
    transform: translateX(3px);
}

/* Geometric play button enhancements */
.vandal-play-btn {
    position: relative;
    background: linear-gradient(45deg, var(--urban-purple), var(--neon-pink));
}

.vandal-play-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--electric-cyan), var(--gaming-gold));
    transition: width 0.4s ease;
}

.vandal-play-btn:hover::after {
    width: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Sharp testimonial design */
.testimonial-wrapper {
    border: 2px solid #e1e5e9;
    border-left: 5px solid var(--urban-purple);
}

.quote-icon {
    border-radius: 0;
}

/* Gaming statistics with sharp design */
.stat-icon {
    border: 2px solid var(--electric-cyan);
    border-radius: 0;
}

.stat-icon::after {
    border-radius: 0;
}

/* Sharp footer elements */
.regulatory-link {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.regulatory-link:hover {
    border-color: var(--electric-cyan);
}

/* Gaming-specific responsive adjustments */
@media (max-width: 890px) {
    .hero-showcase {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .hero-showcase {
        height: 60vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-text-area {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* Remove artistic border-radius from specific gaming elements */
.slot-grid,
.slot-cell,
.bet-display,
.paytable,
.paytable-item {
    border-radius: 0 !important;
}

/* Sharp game controls */
.slot-grid {
    border: 3px solid var(--urban-purple);
}

.slot-cell {
    border: 1px solid #ddd;
}

.slot-cell.winning-cell {
    border: 2px solid var(--gaming-gold);
}

/* Gaming platform branding */
.brand-logo img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Sharp mobile navigation */
@media screen and (max-width: 890px) {
    .navigation-wrapper {
        border-right: 4px solid var(--urban-purple);
    }
}

/* Geometric animations */
@keyframes sharpSlide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes geometricPulse {
    0%, 100% {
        transform: scale(1);
        border-width: 2px;
    }
    50% {
        transform: scale(1.02);
        border-width: 3px;
    }
}

/* Apply geometric animations */
.feature-showcase:hover {
    animation: geometricPulse 0.6s ease-in-out;
}

/* Sharp success states */
.status-active {
    background: var(--gaming-gold);
    border: 2px solid var(--gaming-gold);
}

.status-featured {
    background: var(--gaming-silver);
    border: 2px solid var(--gaming-silver);
}

.status-progress {
    background: var(--gaming-bronze);
    border: 2px solid var(--gaming-bronze);
}