:root {
    --bg: white;
    --panel: #12141a;
    --text: black;
    --muted: #a9b0b8;
    --accent: #f5008d;
    --accent-2: #05c3c7;
    --highlight: #d1e8ac;
    --border: #1f2430;
    --input: #0f1117;
    --gradient-primary: linear-gradient(135deg, var(--accent), var(--accent-2));
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.35);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html,
body {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style:normal;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.85;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
}


.logo-swinger-date {
    width: 300px;
    height: auto;
    margin: 0 20px;
}





/* Hero Section */
.sd-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.sd-content {
    padding-right: 20px;
}

.titleH2 {
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
}

.swinger-date-h1 {
    margin-top: 10px;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    transform: rotate(-6deg);
    --panel: #12141a;
    text-shadow: 2px 3px 0px #12141a;
    ;
    -webkit-text-fill-color: #ffdb02;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #12141a;
    text-transform: uppercase;
}


.swinger-date-h3 {
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    transform: rotate(-6deg);
    --panel: #12141a;
    text-shadow: 2px 3px 0px #12141a;
    ;
    -webkit-text-fill-color: #ffdb02;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #12141a;
    text-transform: uppercase;
    position: relative;
    top: -30px;
    left: -20px;
}

.sd-beta {
    background: #ffdb02;
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
}

.sd-text {
    color: black;
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 90%;
}

.sd-beta {
    color: black;
    margin-bottom: 30px;
    font-size: 18px;
}

.beta-block {
    position: relative;
    top: -40px;
    padding: 20px;
}

.cta-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 60px;
}



.sd-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.sd-image:hover img {
    transform: scale(1.3);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
}



.beta-form {
    margin-top: 30px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.form-group input[type="text"] {
    flex: 1;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: white;
    color: var(--text);
    outline: none;
    font-size: 16px;
    border: none;
}

.form-group button {
    padding: 14px 24px;
    border-radius: var(--radius-md);
    border: none;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 20px;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.flag {
    width: 30px;
    border-radius: 3px;

}

.language {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    display: flex;
    flex-direction: column;
    margin: 20px;
}

.lang-button {
    display: flex;
    align-items: center;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color: black;
    border-radius: 20px;
    padding: 5px;
    padding-left: 15px;
    transition: background-color 0.3s ease;
}

.lang-button:hover {
    background: #ffdb02;
}

.language-link {
    color: black;
    padding-left: 15px;
}

.swal2-confirm {
    padding: 14px 24px;
    border-radius: var(--radius-md);
    border: none;
    background: #05c3c7 !important;
    color: white !important;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 20px;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .pineapple {
    color:white;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    padding: 10px;
    }

    .sd-footer {
        background-color: #f0f0f0;
        width: 100%;
        padding: 10px;
        padding-right: 30px;
        margin-top: auto;
        color: black;
        border-radius: 10px;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px;
        font-family: "Fugaz One", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 20px;
    }
    
    .footer-bottom {
        font-family: "Fugaz One", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 20px;
        display:flex;
        flex-direction: row-reverse;
    }
    
    .footer-bottom a {
        color: var(--accent);
        text-transform: uppercase;
    
    }
    
    .footer-bottom a:hover {
        color: var(--accent-2);
        opacity: 1;
    }

/* Responsive */
@media (max-width: 980px) {
    .sd-section {
        grid-template-columns: 1fr;
    }

    .sd-image {
        order: -1;
        height: 600px;
    }

    .sd-content {
        padding-right: 0;
    }


    .swinger-date-h3 {
        left: 20px;
    }
}

@media (max-width: 640px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-container {
        flex-direction: column;
        width: 100%;
    }

    .form-group {
        flex-direction: column;
    }

    .swinger-date-h3 {
        left: 20px;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}