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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: radial-gradient(circle at center, #2c3e50 0%, #34495e 25%, #5d4e75 50%, #6a3483 75%, #7d3c98 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(44,62,80,0.8), rgba(52,73,94,0.9), rgba(93,78,117,0.8), rgba(106,52,131,0.9), rgba(125,60,152,0.8));
    background-size: 300% 300%;
    animation: gradientShift 30s ease infinite;
    z-index: -1;
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    justify-content: flex-end;
    margin-left: auto;
    transition: all 0.3s ease;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::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;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    margin-bottom: 2rem;
    z-index: 20;
}

.center-image {
    max-width: 350px;
    max-height: 350px;
    width: auto;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(106, 52, 131, 0.4), 0 0 80px rgba(52, 73, 94, 0.3), 0 0 120px rgba(125, 60, 152, 0.2);
    transition: all 0.3s ease;
    animation: imageFloat 4s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.center-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(106, 52, 131, 0.6), 0 0 120px rgba(52, 73, 94, 0.5), 0 0 160px rgba(125, 60, 152, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    background: linear-gradient(45deg, #6a3483, #5d4e75);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(106, 52, 131, 0.4);
    animation: fadeInUp 1s ease-out 0.4s both;
    min-height: 48px; /* Minimum touch target size */
    min-width: 120px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(106, 52, 131, 0.6);
    background: linear-gradient(45deg, #7d3c98, #6a3483);
}

/* Section Styles */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.container {
    max-width: 1200px;
    text-align: center;
    width: 100%;
}

#partners .container {
    text-align: left;
}

#partners .container > p {
    margin-left: 0;
}

.section h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Swap Container */
.swap-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    padding: clamp(0.75rem, 3vw, 2rem);
    flex-direction: column;
    width: min(100%, 439px);
    max-width: 100%;
}

.swap-frame {
    width: min(100%, 283px);
    background: rgba(12, 26, 35, 0.45);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.18), 0 16px 60px rgba(106, 52, 131, 0.25);
    padding: clamp(0.75rem, 2.5vw, 1.5rem);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.swap-frame iframe {
    width: 100%;
    height: clamp(481.98px, 102.01vw, 667.36px);
    min-height: 481.98px;
    border-radius: 14px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.12);
    background: #030a11;
    overflow: hidden;
}

.swap-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 212, 255, 0.24), 0 24px 70px rgba(106, 52, 131, 0.32);
}

@media (max-width: 1024px) {
    .swap-frame iframe {
        height: clamp(463.44px, 92.69vw, 611.74px);
    }
}

@media (max-width: 768px) {
    .swap-container {
        padding: clamp(0.75rem, 6vw, 1.5rem);
    }

    .swap-frame {
        padding: clamp(0.75rem, 4vw, 1.25rem);
    }

    .swap-frame iframe {
        height: clamp(444.91px, 111.23vw, 556.12px);
    }
}

@media (max-width: 540px) {
    .swap-container {
        padding: clamp(0.5rem, 5vw, 1rem);
    }

    .swap-frame {
        border-radius: 16px;
        padding: clamp(0.65rem, 4vw, 1rem);
    }

    .swap-frame iframe {
        height: clamp(426.37px, 120.49vw, 500.52px);
    }
}

@media (max-width: 420px) {
    .swap-frame {
        padding: clamp(0.5rem, 5vw, 0.85rem);
    }
}

@media (max-width: 360px) {
    .swap-frame iframe {
        height: clamp(398.94px, 129.76vw, 463.64px);
    }
}

.swap-error {
    text-align: center;
    color: #ffffff;
}

.swap-error h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.swap-error p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.swap-error a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.swap-error a:hover {
    color: #ffffff;
}

/* Partner Content */
.partner-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
    margin-left: 0;
    width: 100%;
}

.partner-content:not(:first-child) {
    margin-top: 4rem;
}

.partner-image {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(106, 52, 131, 0.4);
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(106, 52, 131, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.partner-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    text-align: left;
    flex: 1;
    margin-left: 0;
}

.website-link {
    display: block;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    margin-top: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
    word-break: break-all;
}

.website-link:hover {
    color: #00d4ff;
    text-decoration: underline;
    transform: translateX(5px);
}

.contract-address {
    display: block;
    font-weight: 600;
    color: #00d4ff;
    font-size: 1rem;
    margin-top: 1rem;
    white-space: nowrap;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    word-break: break-all;
    white-space: normal;
}

.contract-address:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: translateX(5px);
}

.contract-address::after {
    content: "📋";
    font-size: 0.8rem;
    margin-left: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.contract-address:hover::after {
    opacity: 1;
}

/* Livestream Styles */
.livestream-preview {
    margin: 2rem auto;
    max-width: 600px;
    cursor: pointer;
    width: 100%;
}

.livestream-preview > div {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    background: linear-gradient(45deg, #6a3483, #5d4e75);
    transition: all 0.3s ease;
}

.livestream-preview > div > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.livestream-preview > div > div > div:first-child {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.livestream-preview > div > div > div:first-child > div {
    width: 0;
    height: 0;
    border-left: 25px solid #ffffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 8px;
}

.livestream-preview h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
}

.livestream-preview p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* Livestream Modal */
#livestreamModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

#livestreamModal > div {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
}

#livestreamModal button {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    min-height: 48px;
    min-width: 48px;
}

#livestreamModal > div > div {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.3);
}

#livestreamModal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .center-image {
        max-width: 300px;
        max-height: 300px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .swap-container iframe {
        height: 700px;
    }
    
    .partner-content {
        flex-direction: column;
        text-align: center;
        margin-left: 0;
        gap: 1.5rem;
    }
    
    .partner-image {
        float: none;
        margin-right: 0;
        margin-bottom: 1rem;
        margin-left: 0;
        max-width: 180px;
        max-height: 180px;
        align-self: center;
    }
    
    .partner-text {
        text-align: left;
        margin-left: 0;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
        margin: 0.5rem 0;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .center-image {
        max-width: 250px;
        max-height: 250px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .section p {
        font-size: 1rem;
    }
    
    .swap-container iframe {
        width: 100% !important;
        min-width: 300px;
        height: 600px;
        max-width: 100%;
    }
    
    .partner-content {
        flex-direction: column;
        text-align: center;
        margin-left: 0;
        gap: 1rem;
    }
    
    .partner-image {
        float: none;
        margin-right: 0;
        margin-bottom: 1rem;
        margin-left: 0;
        max-width: 150px;
        max-height: 150px;
        align-self: center;
    }
    
    .partner-text {
        text-align: left;
        margin-left: 0;
        font-size: 1rem;
    }
    
    .contract-address {
        font-size: 0.9rem;
        word-break: break-all;
        white-space: normal;
    }
    
    .website-link {
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    .livestream-preview h3 {
        font-size: 1.2rem;
    }
    
    .livestream-preview p {
        font-size: 0.9rem;
    }
    
    #livestreamModal > div {
        width: 95%;
        height: 70vh;
    }
    
    #livestreamModal button {
        top: -50px;
        right: 10px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    /* Improve mobile livestream container */
    .livestream-container {
        margin: 1rem auto;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    #livestreamPlayer {
        border-radius: 8px;
    }
    
    #livestreamError {
        padding: 1rem;
    }
    
    #livestreamError h3 {
        font-size: 1.2rem;
    }
    
    #livestreamError p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .center-image {
        max-width: 200px;
        max-height: 200px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .section p {
        font-size: 0.9rem;
    }
    
    .swap-container iframe {
        width: 100% !important;
        min-width: 280px;
        height: 500px;
    }
    
    .partner-image {
        max-width: 120px;
        max-height: 120px;
    }
    
    .partner-text {
        font-size: 0.9rem;
    }
    
    .contract-address {
        font-size: 0.8rem;
    }
    
    .website-link {
        font-size: 0.8rem;
    }
    
    .livestream-preview h3 {
        font-size: 1rem;
    }
    
    .livestream-preview p {
        font-size: 0.8rem;
    }
    
    .livestream-preview > div > div > div:first-child {
        width: 60px;
        height: 60px;
    }
    
    .livestream-preview > div > div > div:first-child > div {
        border-left: 20px solid #ffffff;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        margin-left: 6px;
    }
    
    #livestreamModal > div {
        width: 98%;
        height: 60vh;
    }
    
    .section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .center-image {
        max-width: 180px;
        max-height: 180px;
    }
    
    .swap-container iframe {
        height: 450px;
    }
    
    .partner-image {
        max-width: 100px;
        max-height: 100px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
        box-shadow: none;
    }
    
    .center-image:hover {
        transform: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
    
    .partner-image:hover {
        transform: none;
    }
    
    .swap-container iframe:hover {
        transform: none;
    }
    
    .website-link:hover {
        transform: none;
    }
    
    .contract-address:hover {
        transform: none;
    }
    
    /* Ensure minimum touch target sizes */
    .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    .cta-button {
        min-height: 44px;
        min-width: 120px;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem;
    }
    
    .contract-address,
    .website-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0.5rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .center-image,
    .partner-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Livestream Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Livestream Container Styles */
.livestream-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
}

#livestreamPlayer {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    background: #000;
}

#livestreamLoading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #6a3483, #5d4e75);
    z-index: 10;
}

#livestreamIframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 5;
}

#livestreamError {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    background: linear-gradient(45deg, #6a3483, #5d4e75);
    z-index: 15;
}

/* Mobile responsiveness for livestream */
@media (max-width: 768px) {
    .livestream-container {
        margin: 1rem auto;
        max-width: 100%;
    }
    
    #livestreamError {
        padding: 1rem;
    }
    
    #livestreamError h3 {
        font-size: 1.2rem;
    }
    
    #livestreamError p {
        font-size: 0.8rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    /* Improve scrolling performance */
    .main-content {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better spacing for mobile */
    .section {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .hero-section {
        padding: 1rem;
        min-height: 90vh;
    }
    
    /* Improve text readability */
    .section p {
        line-height: 1.6;
    }
    
    .partner-text {
        line-height: 1.6;
    }
    
    /* Better button spacing */
    .cta-button {
        margin: 1rem 0;
        width: 100%;
        max-width: 300px;
    }
    
    /* Improve iframe responsiveness */
    .swap-container {
        padding: 0.5rem;
    }
    
    .swap-container iframe {
        border-radius: 8px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 1rem;
    }
    
    .center-image {
        max-width: 200px;
        max-height: 200px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 1.5rem 1rem;
    }
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6a3483;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(106, 52, 131, 0.3);
}

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

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

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #6a3483, #5d4e75);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(106, 52, 131, 0.4);
    min-height: 48px;
    font-family: 'Inter', sans-serif;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(106, 52, 131, 0.6);
    background: linear-gradient(45deg, #7d3c98, #6a3483);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.4);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.65rem 0.85rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}