/* DeeSideTrail.com - Unique Design System */
/* Color Palette - Unique Sports Theme */
:root {
    --dst-primary-navy: #0d1b2a;
    --dst-accent-crimson: #e63946;
    --dst-golden-yellow: #f1c40f;
    --dst-ocean-blue: #219ebc;
    --dst-forest-green: #2a9d8f;
    --dst-snow-white: #ffffff;
    --dst-charcoal-gray: #2b2d42;
    --dst-light-gray: #f8f9fa;
    --dst-medium-gray: #6c757d;
    --dst-dark-shadow: rgba(13, 27, 42, 0.8);
    --dst-light-shadow: rgba(13, 27, 42, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dst-charcoal-gray);
    background-color: var(--dst-snow-white);
    overflow-x: hidden;
}

/* Animated Background */
.dst-dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dst-primary-navy) 0%, var(--dst-charcoal-gray) 50%, var(--dst-primary-navy) 100%);
}

.dst-floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dst-ocean-blue), var(--dst-forest-green));
    opacity: 0.15;
    animation: dst-float-animation 20s infinite ease-in-out;
}

.dst-floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.dst-floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.dst-floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.dst-floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 6s;
}

.dst-floating-element:nth-child(5) {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 30%;
    animation-delay: 8s;
}

.dst-floating-element:nth-child(6) {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 15%;
    animation-delay: 10s;
}

.dst-floating-element:nth-child(7) {
    width: 110px;
    height: 110px;
    bottom: 10%;
    left: 50%;
    animation-delay: 12s;
}

.dst-floating-element:nth-child(8) {
    width: 85px;
    height: 85px;
    top: 30%;
    left: 60%;
    animation-delay: 14s;
}

@keyframes dst-float-animation {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 40px) scale(0.9);
    }
    75% {
        transform: translate(50px, 20px) scale(1.05);
    }
}

/* Header Styles */
.dst-top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px var(--dst-dark-shadow);
    transition: all 0.3s ease;
}

.dst-main-navigation {
    padding: 1rem 0;
}

.dst-nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dst-branding-section a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--dst-snow-white);
    transition: transform 0.3s ease;
}

.dst-branding-section a:hover {
    transform: scale(1.05);
}

.dst-brand-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.dst-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dst-golden-yellow), var(--dst-accent-crimson));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dst-nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.dst-nav-item {
    position: relative;
}

.dst-nav-link {
    color: var(--dst-snow-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.dst-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dst-golden-yellow), var(--dst-accent-crimson));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.dst-nav-link:hover::after,
.dst-nav-link.dst-active-link::after {
    width: 80%;
}

.dst-nav-link:hover,
.dst-nav-link.dst-active-link {
    color: var(--dst-golden-yellow);
}

/* Mobile Menu Toggle */
.dst-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.dst-toggle-line {
    width: 28px;
    height: 3px;
    background: var(--dst-snow-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.dst-menu-toggle[aria-expanded="true"] .dst-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.dst-menu-toggle[aria-expanded="true"] .dst-toggle-line:nth-child(2) {
    opacity: 0;
}

.dst-menu-toggle[aria-expanded="true"] .dst-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
.dst-page-content {
    margin-top: 80px;
}

/* Hero Section */
.dst-hero-banner {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dst-hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dst-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: dst-zoom-pan 20s infinite ease-in-out;
}

@keyframes dst-zoom-pan {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.1) translate(-5%, -5%);
    }
}

.dst-hero-shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8), rgba(43, 45, 66, 0.6));
}

.dst-hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.dst-hero-content {
    animation: dst-fade-in-up 1s ease-out;
}

@keyframes dst-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dst-hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dst-snow-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px var(--dst-dark-shadow);
    line-height: 1.2;
}

.dst-hero-description {
    font-size: 1.25rem;
    color: var(--dst-snow-white);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px var(--dst-dark-shadow);
}

.dst-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--dst-accent-crimson), var(--dst-golden-yellow));
    color: var(--dst-snow-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dst-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.6);
}

.dst-cta-button:active {
    transform: translateY(-1px);
}

/* Section Styles */
.dst-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.dst-section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dst-primary-navy);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.dst-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--dst-accent-crimson), var(--dst-golden-yellow));
    border-radius: 2px;
}

.dst-section-intro {
    font-size: 1.1rem;
    color: var(--dst-medium-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Events Section */
.dst-events-showcase {
    background: var(--dst-light-gray);
}

.dst-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dst-event-card {
    background: var(--dst-snow-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--dst-light-shadow);
    transition: all 0.3s ease;
    animation: dst-card-appear 0.6s ease-out backwards;
}

.dst-event-card:nth-child(1) { animation-delay: 0.1s; }
.dst-event-card:nth-child(2) { animation-delay: 0.2s; }
.dst-event-card:nth-child(3) { animation-delay: 0.3s; }
.dst-event-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes dst-card-appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dst-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.dst-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.dst-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dst-event-card:hover .dst-card-image {
    transform: scale(1.1);
}

.dst-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(13, 27, 42, 0.7));
}

.dst-card-body {
    padding: 1.5rem;
}

.dst-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dst-primary-navy);
    margin-bottom: 1rem;
}

.dst-card-info {
    margin-bottom: 1.5rem;
}

.dst-info-item {
    font-size: 0.95rem;
    color: var(--dst-medium-gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.dst-info-item strong {
    color: var(--dst-primary-navy);
}

.dst-card-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--dst-ocean-blue), var(--dst-forest-green));
    color: var(--dst-snow-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.dst-card-button:hover {
    background: linear-gradient(135deg, var(--dst-forest-green), var(--dst-ocean-blue));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 158, 188, 0.4);
}

/* Purchase Guide Section */
.dst-purchase-guide {
    background: var(--dst-snow-white);
}

.dst-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.dst-step-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--dst-light-gray), var(--dst-snow-white));
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--dst-light-shadow);
    transition: all 0.3s ease;
}

.dst-step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.dst-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--dst-accent-crimson), var(--dst-golden-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.dst-step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dst-snow-white);
}

.dst-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dst-primary-navy);
    margin-bottom: 1rem;
}

.dst-step-text {
    font-size: 1rem;
    color: var(--dst-medium-gray);
    line-height: 1.7;
}

/* About Section */
.dst-about-section {
    background: var(--dst-light-gray);
}

.dst-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.dst-about-image-block {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--dst-light-shadow);
}

.dst-about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.dst-about-image-block:hover .dst-about-image {
    transform: scale(1.05);
}

.dst-about-text-block {
    padding: 1rem;
}

.dst-about-description {
    font-size: 1.05rem;
    color: var(--dst-medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.dst-faq-section {
    background: var(--dst-snow-white);
}

.dst-faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.dst-faq-item {
    margin-bottom: 1rem;
    background: var(--dst-light-gray);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--dst-light-shadow);
}

.dst-faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dst-primary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.dst-faq-question:hover {
    background: rgba(230, 57, 70, 0.05);
}

.dst-faq-question[aria-expanded="true"] {
    background: rgba(230, 57, 70, 0.1);
}

.dst-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dst-accent-crimson);
    transition: transform 0.3s ease;
}

.dst-faq-question[aria-expanded="true"] .dst-faq-icon {
    transform: rotate(45deg);
}

.dst-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.dst-faq-question[aria-expanded="true"] + .dst-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.dst-faq-answer p {
    color: var(--dst-medium-gray);
    line-height: 1.8;
}

/* Footer */
.dst-site-footer {
    background: var(--dst-primary-navy);
    color: var(--dst-snow-white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.dst-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dst-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.dst-footer-column {
    padding: 1rem 0;
}

.dst-footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dst-golden-yellow);
}

.dst-footer-list {
    list-style: none;
}

.dst-footer-item {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.dst-footer-link {
    color: var(--dst-snow-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dst-footer-link:hover {
    color: var(--dst-golden-yellow);
}

.dst-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.dst-footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 991px) {
    .dst-menu-toggle {
        display: flex;
    }
    
    .dst-nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dst-primary-navy);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px var(--dst-dark-shadow);
        z-index: 1000;
    }
    
    .dst-nav-list.active {
        right: 0;
    }
    
    .dst-nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dst-nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    .dst-hero-heading {
        font-size: 2.5rem;
    }
    
    .dst-hero-description {
        font-size: 1.1rem;
    }
    
    .dst-about-content {
        grid-template-columns: 1fr;
    }
    
    .dst-steps-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dst-hero-heading {
        font-size: 2rem;
    }
    
    .dst-section-heading {
        font-size: 2rem;
    }
    
    .dst-events-grid {
        grid-template-columns: 1fr;
    }
    
    .dst-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .dst-nav-wrapper {
        padding: 0 1rem;
    }
    
    .dst-section-wrapper {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .dst-hero-heading {
        font-size: 1.75rem;
    }
    
    .dst-hero-description {
        font-size: 1rem;
    }
    
    .dst-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .dst-brand-name {
        font-size: 1.2rem;
    }
}

/* Event Detail Page Styles */
.dst-event-details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.dst-event-info-block {
    background: var(--dst-snow-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--dst-light-shadow);
}

.dst-event-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.dst-info-card {
    background: var(--dst-light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.dst-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px var(--dst-light-shadow);
}

.dst-info-label {
    font-size: 0.9rem;
    color: var(--dst-medium-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dst-info-value {
    font-size: 1.1rem;
    color: var(--dst-primary-navy);
    font-weight: 700;
}

.dst-event-description,
.dst-purchase-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--dst-light-gray);
}

.dst-description-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dst-primary-navy);
    margin-bottom: 1rem;
}

.dst-event-description p,
.dst-purchase-section p {
    font-size: 1.05rem;
    color: var(--dst-medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.dst-platform-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.dst-platform-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--dst-accent-crimson), var(--dst-golden-yellow));
    color: var(--dst-snow-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.dst-platform-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.4);
}

.dst-event-map-block {
    background: var(--dst-snow-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--dst-light-shadow);
    height: fit-content;
}

.dst-map-container {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

/* Contact Form Styles */
.dst-contact-section {
    background: var(--dst-light-gray);
    padding: 5rem 0;
}

.dst-contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dst-contact-form {
    background: var(--dst-snow-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--dst-light-shadow);
}

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

.dst-form-label {
    display: block;
    font-weight: 600;
    color: var(--dst-primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.dst-form-input,
.dst-form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--dst-light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--dst-snow-white);
    color: var(--dst-charcoal-gray);
}

.dst-form-input:focus,
.dst-form-textarea:focus {

}

.dst-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.dst-form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--dst-accent-crimson), var(--dst-golden-yellow));
    color: var(--dst-snow-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dst-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.4);
}

.dst-form-submit:active {
    transform: translateY(-1px);
}

/* Success Modal */
.dst-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dst-success-modal.dst-modal-active {
    opacity: 1;
    visibility: visible;
}

.dst-modal-content {
    background: var(--dst-snow-white);
    padding: 3rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.dst-success-modal.dst-modal-active .dst-modal-content {
    transform: scale(1);
}

.dst-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    border: none;
    background: var(--dst-light-gray);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dst-primary-navy);
    transition: all 0.3s ease;
}

.dst-modal-close:hover {
    background: var(--dst-accent-crimson);
    color: var(--dst-snow-white);
    transform: rotate(90deg);
}

.dst-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--dst-forest-green), var(--dst-ocean-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dst-snow-white);
}

.dst-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dst-primary-navy);
    margin-bottom: 1rem;
}

.dst-modal-text {
    font-size: 1.05rem;
    color: var(--dst-medium-gray);
    line-height: 1.7;
}

/* Policy Pages Styles */
.dst-policy-section {
    background: var(--dst-light-gray);
    padding: 5rem 0;
}

.dst-policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dst-policy-content {
    background: var(--dst-snow-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--dst-light-shadow);
}

.dst-policy-date {
    font-size: 0.9rem;
    color: var(--dst-medium-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.dst-policy-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dst-primary-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.dst-policy-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dst-primary-navy);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.dst-policy-content p {
    font-size: 1.05rem;
    color: var(--dst-medium-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.dst-policy-content ul,
.dst-policy-content ol {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.dst-policy-content li {
    font-size: 1.05rem;
    color: var(--dst-medium-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.dst-policy-content a {
    color: var(--dst-accent-crimson);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dst-policy-content a:hover {
    color: var(--dst-golden-yellow);
    text-decoration: underline;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
a:focus,
button:focus {

}

/* Responsive Event Detail Page */
@media (max-width: 991px) {
    .dst-event-details-container {
        grid-template-columns: 1fr;
    }
    
    .dst-event-info-grid {
        grid-template-columns: 1fr;
    }
    
    .dst-platform-buttons {
        flex-direction: column;
    }
    
    .dst-platform-link {
        width: 100%;
    }
}

