@import url('https://fonts.googleapis.com/css2?family=Rasa&display=swap');

@font-face {
    font-family: 'Rave';
    src: url('./rave/Rave.otf') format('opentype'),
         url('./rave/Rave.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Rasa', sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #000000;
}

.header {
    text-align: center;
    padding: 2rem 1rem 1rem;
    background: rgba(0, 0, 0, 0.3);
}

.brand-title {
    font-family: 'Rave', sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.tagline {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.signup-section {
    text-align: left;
    padding: 2rem;
}

.signup-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.4;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-input,
.instagram-input {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #333333;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.email-input::placeholder,
.instagram-input::placeholder {
    color: #888888;
}

.email-input:focus,
.instagram-input:focus {
    outline: none;
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.signup-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    color: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: inherit;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.image-container:hover .main-image {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-title {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .signup-section {
        padding: 1rem;
        text-align: center;
    }
    
    .signup-form {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .image-container {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 2rem;
    }
    
    .header {
        padding: 1.5rem 1rem 0.5rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .signup-text {
        font-size: 1.1rem;
    }
    
    .email-input,
    .signup-btn {
        padding: 0.8rem 1.2rem;
    }
}

/* Message styling */
.message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
    color: #22c55e;
}

.message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
    color: #ef4444;
}

.signup-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}