More actions
:root {
    --royal-purple: #5d1b98;
    --deep-purple: #3a1060;
    --royal-gold: #d4af37;
    --dark-navy: #0f1a2a;
    --crimson: #b80f0a;
    --parchment: #f9f6f0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-navy);
    color: var(--parchment);
    line-height: 1.6;
    overflow-x: hidden;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2a1050;
    z-index: -1;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: -2;
}

.logo-container {
    margin-bottom: 3rem;
    max-width: 500px;

}

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

.logo-image {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

.content {
    max-width: 1000px !important;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--parchment);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}


.description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}
 

.signup-form {
    margin: 3rem 0;
    max-width: 1400px;
    text-align: center;
     justify-content: center;
      border: 1 solid yellow;
}

.form-group {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
}

.email-input {
    flex: 1;
    padding: 0.5rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border: none;
    background-color: rgba(249, 246, 240, 0.9);
    color: var(--dark-navy);
}

.email-input::placeholder {
    color: rgba(15, 26, 42, 0.6);
}

.subscribe-btn {
    padding: 0.5rem 2rem;
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    background: linear-gradient(to right, var(--royal-purple), var(--deep-purple));
    color: var(--parchment);
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: linear-gradient(to right, var(--deep-purple), var(--royal-purple));
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: .25rem 0 !important;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-gold);
    background: rgba(15, 26, 42, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--royal-purple);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(212, 175, 55, 0.3);
}

.social-icon .fa-facebook-f {
    color: #1877F2;
}

.social-icon .fa-twitter {
    color: #1DA1F2;
}

.social-icon .fa-instagram {
    color: #E4405F;
}

.social-icon .fa-discord {
    color: #5865F2;
}



.feature {
    background: rgba(15, 26, 42, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-family: 'Crimson Pro', serif;
    color: var(--royal-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.crown-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    color: var(--royal-gold);
}

.crown-divider::before,
.crown-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.crown-divider span {
    margin: 0 1.5rem;
    font-size: 1.5rem;
}

        .auth-container {
            background: rgba(15, 26, 42, 0.9);
            border: 1px solid rgba(212, 175, 55, 0.3);
            
            border-radius: 10px;
            padding: 3rem;
            width: 1800px !important;
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .auth-container2 {
            background: rgba(15, 26, 42, 0.9);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            padding: 3rem;
            max-width: 1450px !important;
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .auth-title {
            font-family: 'Crimson Pro', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--royal-gold);
            text-align: center;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    

    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
      
    .form-group {
        flex-direction: column;
    }
    
    .subscribe-btn {
        padding: 0.8rem;
    }
}
* {
  box-sizing: border-box;
}
.row {
    display:flex;
}
/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;

}
.first-col, .third-col {
    flex: 1
}
.second-col {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Novel page container */
.container {
    max-width: 1050px !important;
    margin: 0 auto;
    background-color: rgba(15, 26, 42, 0.9);
    padding: 60px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--parchment) !important;
}

/* Common page-specific styles */
.content-centered {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.mycrown-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    color: var(--royal-gold);
}

.mycrown-divider::before,
.mycrown-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.mycrown-divider span {
    font-size: 1rem;
}

ul.custom-list {
    list-style: none;
    padding-left: 0;
}

ul.custom-list li {
    padding-left: 1.5em;
    position: relative;
}

ul.custom-list li::before {
    content: "♔";
    position: absolute;
    left: -10px;
    color: var(--royal-gold);
}

.form-group {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.form-label {
    color: var(--royal-gold);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 200px;
    text-align: right;
    margin: 0;
}

.mylabel {
    color: var(--royal-gold);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    width: 200px;
    text-align: right;
    margin: 0;
}

.form-input, .form-select {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    background: rgba(249, 246, 240, 0.9);
    color: var(--dark-navy);
    font-size: 20px !important;
    font-family: 'Montserrat', sans-serif !important;
    transition: all 0.3s ease;
    min-width: 0;
}

.form-input.short {
    max-width: 120px;
}

.form-input::placeholder {
    color: rgba(15, 26, 42, 0.6);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--royal-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    padding-left: 210px;
}

.form-button {
    width: 50%;
    max-width: 300px;
    padding: 1.2rem 2rem;
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(to right, var(--royal-purple), var(--deep-purple));
    color: var(--parchment);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem auto 0;
    display: block;
}

.form-button:hover {
    background: linear-gradient(to right, var(--deep-purple), var(--royal-purple));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.checkbox-container input {
    margin-right: 0.8rem;
    accent-color: var(--royal-gold);
    transform: scale(1.2);
}

.checkbox-container label {
    color: var(--parchment);
    font-size: 1rem;
}

.form-links {
    text-align: center;
    margin-top: 2rem;
}

.form-links a {
    color: var(--royal-gold);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    margin: 0.5rem;
}

.form-links a:hover {
    color: var(--parchment);
}

.error-text {
    color: var(--crimson);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.coming-soon {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 7px;
    background: linear-gradient(to right, var(--royal-purple), var(--royal-gold), var(--crimson));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 2rem 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Tale page styles */
.tale-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.tale-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--royal-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.tale-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.0rem;
    text-align: center;
    color: var(--parchment);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.tale-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    text-align: center;
    color: var(--royal-gold);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.tale-text {
    font-family: 'Montserrat', 'Crimson Pro', serif;
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--parchment);
    text-align: justify;
    margin-bottom: 1.5rem;
    text-indent: 2em;
}

.tale-text:first-of-type {
    text-indent: 0;
}

.tale-text:first-of-type::first-letter {
    font-size: 4rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin: 0.1em 0.1em 0 0;
    color: var(--royal-gold);
}
