/* 
   Common CSS - Shared styles for the entire website
   Extracted from home.css and index.css to maintain consistent theming
*/

/* Root Variables */
:root {
    --primary-color: #8E54E9;
    --secondary-color: #4776E6;
    --background-color: #000;
    --card-background: rgba(255, 255, 255, 0.05);
    --text-color: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Nunito', 'Quicksand', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
}

/* Background Lighting Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(71, 118, 230, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(142, 84, 233, 0.15) 0%, transparent 45%);
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo & Text Gradient */
.texto-gradiente {
    background-image: linear-gradient(to right, #4776E6, #8E54E9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: sans-serif;
    font-size: 3.5em;
    font-weight: bold;
    text-shadow: 0 0 30px rgba(71, 118, 230, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo .texto-gradiente {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: sans-serif;
    margin: 0;
    background-image: linear-gradient(to right, #4776E6, #8E54E9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(71, 118, 230, 0.3);
}

/* Common Card Styling */
.card-style {
    background-color: var(--card-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

/* Media Queries */
@media (max-width: 1024px) {
    :root {
        --border-radius: 10px;
    }
}

@media (max-width: 768px) {
    :root {
        --border-radius: 8px;
    }
    
    .texto-gradiente {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    :root {
        --border-radius: 6px;
    }
    
    .texto-gradiente {
        font-size: 2em;
    }
}
