/* Main Stylesheet for Royal Goose Studios */

:root {
    --primary: #8A2BE2; /* Rich purple */
    --primary-light: #9D4EDD;
    --secondary: #10151B; /* Very dark blue-black */
    --accent: #D4AF37; /* Gold */
    --accent-hover: #F5CB5C;
    --text-light: #E2E2E2;
    --dark: #0A0C10;
    --gradient-1: linear-gradient(135deg, #2A0845 0%, #6441A5 100%);
    --gradient-2: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
}

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

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--secondary);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Text Selection */
::selection {
    background: var(--primary);
    color: white;
}

/* Navbar Styling */
.navbar {
    background-color: rgba(10, 12, 16, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    padding: 0.8rem 2rem;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 0.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light) !important;
    letter-spacing: 2px;
    position: relative;
    padding: 0.5rem 0;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-left: 1.5rem;
    position: relative;
    color: var(--text-light) !important;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    padding: 0.7rem 0;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.dropdown-menu {
    background-color: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 0.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0.75rem 0;
    margin-top: 1rem;
}

.dropdown-item {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover {
    background-color: rgba(138, 43, 226, 0.1);
    color: var(--accent);
    transform: translateX(5px);
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-1);
    padding: 8rem 0 6rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg-texture.jpg') center/cover;
    opacity: 0.15;
    mix-blend-mode: luminosity;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to top, var(--secondary), transparent);
    z-index: 1;
}

.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.3);
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100vw);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-subtitle {
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--text-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    max-width: 600px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    font-size: 0.9rem;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0;
}

.btn-custom:hover {
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.6);
}

.btn-custom:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--primary);
    margin-left: 1rem;
    box-shadow: none;
}

.btn-outline::before {
    background: var(--primary);
}

.btn-outline:hover {
    color: white;
    border-color: transparent;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    z-index: -1;
}

/* Page Header */
.page-header {
    padding: 12rem 0 8rem;
    position: relative;
    background: var(--gradient-1);
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg-texture.jpg') center/cover;
    opacity: 0.1;
    mix-blend-mode: luminosity;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--secondary), transparent);
    z-index: 1;
}

.page-title-container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.page-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Section Styling */
.section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background-color: var(--dark);
}

.section-gradient {
    background: var(--gradient-2);
}

.section-title-container {
    margin-bottom: 5rem;
    position: relative;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
}

/* Featured Games & Cards */
.featured-games {
    position: relative;
    padding: 8rem 0;
}

.featured-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj4KICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgPGcgZmlsbD0iIzJBMDg0NSIgZmlsbC1vcGFjaXR5PSIwLjQiPgogICAgICA8cGF0aCBkPSJNMzYgMzRoLTJWMjRoMTB2MmgtOHY4em0tNCAtNGgtMnYtMTBoMTB2Mmgtdjh6Ii8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4=');
    opacity: 0.05;
    z-index: 0;
}

.game-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(10, 12, 16, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    height: 450px;
}

.game-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(138, 43, 226, 0.3);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card-img-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.game-card:hover .game-card-img {
    transform: scale(1.05);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(10, 12, 16, 0.8));
    pointer-events: none;
}

.game-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 220px);
    position: relative;
}

.game-card-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--text-light);
}

.game-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.game-card:hover .game-card-title::after {
    width: 80px;
}

.game-card-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}

.btn-card {
    align-self: flex-start;
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
    margin-top: auto;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Tools Section */
.tools-section {
    background-color: var(--dark);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.tools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(138, 43, 226, 0.1), transparent 70%);
    z-index: 0;
}

.tools-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
    z-index: 0;
}

.feature-box {
    background-color: rgba(16, 21, 27, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transition: height 0.5s ease;
    z-index: -1;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(138, 43, 226, 0.3);
}

.feature-box:hover::before {
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--accent);
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px dashed rgba(138, 43, 226, 0.3);
    animation: spin 20s linear infinite;
    opacity: 0.5;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-description {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj4KICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgPGcgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwLjAzIj4KICAgICAgPHBhdGggZD0iTTM2IDM0aC0yVjI0aDEwdjJoLTh2OHptLTQgLTRoLTJ2LTEwaDEwdjJoLXY4eiIvPgogICAgPC9nPgogIDwvZz4KPC9zdmc+');
    opacity: 0.4;
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-img-container {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-img-container:hover .about-img {
    transform: scale(1.05);
}

.about-img-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--accent);
    border-left: 3px solid var(--accent);
    z-index: 2;
}

.about-img-container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
    z-index: 2;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

/* Contact Form */
.contact-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj4KICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgPGcgZmlsbD0iIzJBMDg0NSIgZmlsbC1vcGFjaXR5PSIwLjQiPgogICAgICA8cGF0aCBkPSJNMzYgMzRoLTJWMjRoMTB2MmgtOHY4em0tNCAtNGgtMnYtMTBoMTB2Mmgtdjh6Ii8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4=');
    opacity: 0.05;
    z-index: 0;
}

.contact-form-container {
    position: relative;
}

.contact-form {
    background-color: rgba(10, 12, 16, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    z-index: -1;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
}

.form-control {
    background-color: rgba(16, 21, 27, 0.5);
    border: 1px solid rgba(138, 43, 226, 0.2);
    color: var(--text-light);
    border-radius: 4px;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-control:focus {
    background-color: rgba(16, 21, 27, 0.7);
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
    color: var(--text-light);
}

.form-control::placeholder {
    color: rgba(226, 226, 226, 0.5);
    font-style: italic;
    font-size: 0.9rem;
}

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

.status-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    animation: fadeIn 0.5s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Info */
.contact-info {
    background-color: rgba(10, 12, 16, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    z-index: -1;
}

.contact-info-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--accent);
    margin-right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    z-index: -1;
    animation: spin 20s linear infinite;
}

.contact-info-item:hover .contact-icon {
    background-color: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-text {
    flex: 1;
}

.contact-text h5 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

.contact-text p {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    margin-top: 3rem;
}

.social-links h5 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.social-links h5::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    margin-right: 1rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 50%;
}

.social-links a:hover {
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-links a:hover::before {
    transform: scale(1);
}

/* Footer */
footer {
    background-color: var(--dark);
    padding: 5rem 0 1rem;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    z-index: 1;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.7;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-links a:hover::before {
    transform: translateY(-50%) scale(1.5);
}

.footer-social-icons {
    display: flex;
    margin-top: 2rem;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    margin-right: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.footer-social-icons a:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-social-icons a:hover::before {
    transform: scale(1);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.copyright a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--text-light);
}

/* Animations */
.animated-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-element.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero-title, .page-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-info, .contact-form {
        padding: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title, .page-title {
        font-size: 3rem;
    }
    
    .navbar-collapse {
        background-color: rgba(10, 12, 16, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: 8px;
        margin-top: 1rem;
        border: 1px solid rgba(138, 43, 226, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link {
        margin-left: 0;
        padding: 0.8rem 0;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .about-img-container {
        margin-bottom: 3rem;
    }
    
    .contact-info {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title, .page-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle, .page-subtitle {
        font-size: 1rem;
    }
    
    .hero {
        text-align: center;
    }
    
    .section, .contact-section, .featured-games, .tools-section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-title-container {
        text-align: center;
    }
    
    .btn-custom {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .game-card {
        height: auto;
    }
    
    .feature-box {
        padding: 2rem 1.5rem;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
    
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .contact-form, .contact-info {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title, .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-info-item {
        margin-bottom: 1.5rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
}

/* Utilities */
.pixel {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;   
}