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

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

body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #eaeaea;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

header {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #ff3b7b;
    transform: translateY(-1px);
}

.logo span {
    color: #ff3b7b;
    font-weight: 700;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #fff;
    background: rgba(255, 59, 123, 0.1);
    transform: translateY(-1px);
}

nav a.active {
    color: #ff3b7b;
    background: rgba(255, 59, 123, 0.15);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.qr {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 24px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.qr:hover {
    transform: translateY(-5px);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #fff;
    letter-spacing: -0.02em;
}

.subtitle {
    color: #999;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.icons a {
    font-size: 1.8rem;
    color: #666;
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.icons a:hover {
    color: #ff3b7b;
    background: rgba(255, 59, 123, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 59, 123, 0.2);
}

.icons a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0.7);
    transition: all 0.3s ease;
}

.icons a:hover img {
    filter: brightness(1) drop-shadow(0 0 8px rgba(255, 59, 123, 0.3));
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.page-content.form-page {
    max-width: none;
    width: 95%;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.page-description {
    color: #999;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    color: #777;
}

footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff3b7b;
}

/* Form Styles */
.form-container {
    max-width: none;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #ff3b7b;
    background: rgba(255, 59, 123, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 59, 123, 0.2);
}

.form-input::placeholder {
    color: #666;
}

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

.form-button {
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #ff3b7b 0%, #ff6b9d 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 59, 123, 0.3);
}

.form-button:active {
    transform: translateY(0);
}

.form-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.form-link:hover {
    color: #ff3b7b;
}

.error-message {
    background: rgba(255, 59, 123, 0.1);
    border: 1px solid rgba(255, 59, 123, 0.3);
    color: #ff6b9d;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .qr {
        width: 160px;
        height: 160px;
    }
    
    .icons {
        gap: 1rem;
    }
    
    .icons a {
        width: 50px;
        height: 50px;
        padding: 0.8rem;
    }
    
    .icons a img {
        width: 28px;
        height: 28px;
    }
}