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

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #d2506a;
    --secondary-color: #e67e8d;
    --accent-color: #f5a5b0;
    --text-color: #2c3e50;
    --light-text: #ffffff;
    --background-color: #fff5f7;
    --card-background: #ffffff;
    --gradient-primary: linear-gradient(135deg, #d2506a 0%, #e67e8d 100%);
    --gradient-secondary: linear-gradient(135deg, #e67e8d 0%, #f5a5b0 100%);
    --shadow-sm: 0 2px 4px rgba(210, 80, 106, 0.1);
    --shadow-md: 0 4px 6px rgba(210, 80, 106, 0.15);
    --shadow-lg: 0 10px 15px rgba(210, 80, 106, 0.2);
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    letter-spacing: 0.3px;
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

/* Header Styles */
.main-header {
    background: var(--gradient-primary);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

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

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: #000000;
    position: relative;
}

.logo-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    color: #fff;
    opacity: 0.9;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 2px;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('https://cdnb.artstation.com/p/assets/images/images/055/939/589/large/-final.jpg?1668083046');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.hero h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1.2s ease-out;
    line-height: 1.3;
}

.hero p {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    position: relative;
}

/* Common Button Styles */
.cta-button,
.play-button,
.submit-btn {
    font-family: 'Orbitron', sans-serif;
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(210, 80, 106, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button::before,
.play-button::before,
.submit-btn::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: 0.5s;
}

.cta-button::after,
.play-button::after,
.submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: var(--gradient-secondary);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover,
.play-button:hover,
.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(210, 80, 106, 0.4);
}

.cta-button:hover::before,
.play-button:hover::before,
.submit-btn:hover::before {
    left: 100%;
}

.cta-button:hover::after,
.play-button:hover::after,
.submit-btn:hover::after {
    opacity: 1;
}

.cta-button:active,
.play-button:active,
.submit-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(210, 80, 106, 0.3);
}

/* Specific Button Styles */
.cta-button {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    animation: fadeInUp 1.2s ease-out;
}

.play-button {
    font-size: 1rem;
    padding: 0.8rem 2rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
}

/* Button Loading State */
.cta-button.loading,
.play-button.loading,
.submit-btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.cta-button.loading::before,
.play-button.loading::before,
.submit-btn.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
    to {
        transform: rotate(360deg);
    }
}

/* Button Focus States */
.cta-button:focus,
.play-button:focus,
.submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(210, 80, 106, 0.3);
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }

    .play-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.8rem;
    }

    .submit-btn {
        padding: 0.9rem 1.8rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }

    .play-button {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
    }
}

/* Button Hover Animation */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 4px 15px rgba(210, 80, 106, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(210, 80, 106, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(210, 80, 106, 0.3);
    }
}

.cta-button:hover,
.play-button:hover,
.submit-btn:hover {
    animation: buttonPulse 2s infinite;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background-color: var(--card-background);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding: 2rem;
    background: var(--card-background);
    border-radius: 15px;
}

.about-text h1 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Games Section */
.games {
    padding: 5rem 2rem;
    background-color: var(--card-background);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(210, 80, 106, 0.05) 0%, rgba(230, 126, 141, 0.05) 100%);
    z-index: 0;
}

.games h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
    from {
        text-shadow: 0 0 5px rgba(210, 80, 106, 0.2),
                     0 0 10px rgba(210, 80, 106, 0.2),
                     0 0 15px rgba(210, 80, 106, 0.2);
    }
    to {
        text-shadow: 0 0 10px rgba(210, 80, 106, 0.4),
                     0 0 20px rgba(210, 80, 106, 0.4),
                     0 0 30px rgba(210, 80, 106, 0.4);
    }
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.game-card {
    background-color: var(--card-background);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(210, 80, 106, 0.1) 0%, rgba(230, 126, 141, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.game-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 30px rgba(210, 80, 106, 0.2);
}

.game-card:hover::before {
    opacity: 1;
}

.game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1));
    transform: translateZ(20px);
}

.game-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.3;
    transition: transform 0.3s ease;
}

.game-card:hover h3 {
    transform: scale(1.05);
}

.game-description {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease;
}

.game-card:hover .game-description {
    transform: translateY(-5px);
}

.play-button {
    font-family: 'Orbitron', sans-serif;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-secondary);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.play-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: 0.5s;
}

.play-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(210, 80, 106, 0.3);
}

.play-button:hover::before {
    left: 100%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.game-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.game-card:nth-child(even) {
    animation: float 6s ease-in-out infinite 1s;
}

/* Disclaimer Section */
.disclaimer {
    background: var(--gradient-primary);
    padding: 4rem 2rem;
    color: var(--light-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.disclaimer h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.disclaimer p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section p,
.footer-section a {
    font-family: 'Quicksand', sans-serif;
    color: var(--light-text);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .game-card:hover {
        transform: translateY(-10px) rotateX(3deg);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-container {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(163, 56, 127, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem 1rem;
        flex-direction: column;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        width: 100%;
    }

    .about-image img {
        height: 300px;
    }

    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .games {
        padding: 3rem 1rem;
    }

    .games h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .game-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .game-card:hover {
        transform: translateY(-5px);
    }

    .game-card img {
        height: 200px;
    }

    .game-info {
        padding: 1.2rem;
    }

    .game-card h3 {
        font-size: 1.3rem;
    }

    .disclaimer {
        margin: 1rem;
        padding: 2rem 1rem;
    }

    .disclaimer h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-section p:first-of-type {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-card img {
        height: 200px;
    }

    .game-info {
        padding: 1.2rem;
    }

    .game-card h3 {
        font-size: 1.3rem;
    }

    .play-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .about-image img {
        height: 250px;
    }

    .game-card h3 {
        font-size: 1.2rem;
    }

    .play-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .disclaimer {
        margin: 0.5rem;
        padding: 1.5rem 1rem;
    }

    .disclaimer h2 {
        font-size: 2rem;
    }

    .disclaimer p {
        font-size: 1rem;
    }

    .footer-section {
        margin-bottom: 1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem 5rem;
    background-color: var(--background-color);
    min-height: 100vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.contact-intro {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background-color: var(--card-background);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-info {
    background: var(--gradient-primary);
    padding: 3rem 2rem;
    color: var(--light-text);
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.info-item p {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.8;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.contact-form {
    padding: 3rem 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-btn {
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-secondary);
    color: var(--light-text);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    opacity: 0.9;
}

/* Privacy Policy and Terms Pages */
.privacy-section,
.terms-section {
    padding: 8rem 2rem 5rem;
    background-color: var(--background-color);
    min-height: 100vh;
}

.privacy-container,
.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--card-background);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.privacy-section h1,
.terms-section h1 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-content h2,
.terms-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.privacy-content p,
.terms-content p {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-content ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-content li,
.terms-content li {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .info-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 6rem 1rem 3rem;
    }

    .contact-section h1 {
        font-size: 2rem;
    }

    .contact-intro {
        font-size: 1rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
    }
}

/* Responsive Design for Privacy and Terms Pages */
@media (max-width: 768px) {
    .privacy-section,
    .terms-section {
        padding: 6rem 1rem 3rem;
    }

    .privacy-container,
    .terms-container {
        padding: 2rem;
    }

    .privacy-section h1,
    .terms-section h1 {
        font-size: 2.5rem;
    }

    .privacy-content h2,
    .terms-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-container,
    .terms-container {
        padding: 1.5rem;
    }

    .privacy-section h1,
    .terms-section h1 {
        font-size: 2rem;
    }

    .privacy-content h2,
    .terms-content h2 {
        font-size: 1.3rem;
    }
} 