/* Already Registered Page Styles for Sl1ckn01.com */

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Marble Background Overlay */
.marble-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: -1;
}

/* Main Container */
.registered-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.registered-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

/* Logo Section */
.logo-section {
    text-align: center;
    color: white;
}

.registered-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.registered-logo:hover {
    transform: scale(1.05);
}

.welcome-title {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.welcome-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
}

/* Info Container */
.registered-info-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.decorative-frame {
    position: relative;
}

.decorative-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #d4af37, transparent, #d4af37);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
}

/* Status Icon */
.status-icon {
    text-align: center;
    margin-bottom: 30px;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2ed573, #26d0ce);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(46, 213, 115, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.checkmark {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(46, 213, 115, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(46, 213, 115, 0.5);
    }
}

/* Content */
.info-content h2 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.main-message {
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Access Options */
.access-options {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.option-card h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.option-card p {
    color: #aaaaaa;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Buttons */
.access-button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

.access-button.primary {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: black;
}

.access-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.access-button:hover {
    transform: translateY(-2px);
}

.access-button.primary:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.access-button.secondary:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.access-button:hover .button-shine {
    left: 100%;
}

/* Forms */
.update-form-container,
.support-form-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.update-form-container h3,
.support-form-container h3 {
    color: #d4af37;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
}

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

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cccccc;
    cursor: pointer;
    line-height: 1.5;
    font-size: 14px;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #d4af37;
    border-color: #d4af37;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-weight: bold;
    font-size: 12px;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

/* Social Connect */
.social-connect {
    text-align: center;
    margin: 40px 0;
}

.social-connect p {
    color: #aaaaaa;
    margin-bottom: 15px;
    font-size: 14px;
}

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #e1306c, #fd1d1d, #fcb045);
    color: white;
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Help Text */
.help-text {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.help-text p {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
}

.help-text a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-text a:hover {
    color: #f4d03f;
    text-decoration: underline;
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .registered-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .registered-info-container {
        padding: 30px 20px;
    }
    
    .info-content h2 {
        font-size: 2rem;
    }
    
    .form-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .registered-container {
        padding: 10px;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .registered-logo {
        width: 150px;
        height: 150px;
    }
    
    .registered-info-container {
        padding: 20px 15px;
    }
    
    .info-content h2 {
        font-size: 1.8rem;
    }
    
    .access-button {
        min-width: 150px;
        padding: 12px 20px;
    }
}
