@import url('https://fonts.googleapis.com/css?family=Hammersmith+One|Russo+One|Staatliches&display=swap');
/* Root Variables */
:root {
    --primary-color: #00bfff;
    --secondary-color: #001a33;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --card-bg: #0a1428;
    --border-color: #1a3a52;
    --bg-dark: #000000;
}

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

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

h2 {
    font-size: 32px;
    margin: 40px 0 25px 0;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

p, li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 15px;
}

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

a:hover {
    color: #00a8d8;
}

/* Navbar */
.navbar {
    background: #000000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.2);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid transparent;
    display: inline-block;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 191, 255, 0.15);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link.active::after {
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.8);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.87) 0%, rgba(0, 30, 50, 0.87) 50%, rgba(0, 0, 0, 0.87) 100%), 
        url('../images/gta 5 background.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    transform: translate(0, -50%);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, -50%); }
    50% { transform: translate(30px, -50%); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 191, 255, 0.3);
}

.cyan {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* About Hero */
.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.87) 0%, rgba(0, 30, 50, 0.87) 50%, rgba(0, 0, 0, 0.87) 100%),
        url('../images/gta 5 background.png') center/cover no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.12) 0%, transparent 70%);
    top: 50%;
    right: -15%;
    transform: translate(0, -50%);
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.08) 0%, transparent 70%);
    top: 50%;
    left: -10%;
    transform: translate(0, -50%);
    animation: float 10s ease-in-out infinite reverse;
    z-index: 1;
}

.about-hero .container,
.about-hero .hero-title,
.about-hero .hero-subtitle {
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Content Section */
.about-content {
    flex: 1;
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(10, 20, 40, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8d8 100%);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(0, 191, 255, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 14px 35px;
    font-size: 15px;
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: #fff;
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
}

/* Content Block Styling */
.content-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.content-block:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.08);
}

.content-block h2 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Features Grid */
.features-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-item, .benefit-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover, .benefit-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.1);
}

.feature-icon, .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8d8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #000;
}

.feature-item h4, .benefit-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-item p, .benefit-item p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.stat-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.08);
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.requirement-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.08);
}

.requirement-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.requirement-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.step {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.08);
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8d8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    color: #000;
}

.step-content h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
    font-size: 16px;
}

.step-content p {
    font-size: 13px;
    margin-bottom: 0;
}

/* FAQ */
.faq-items {
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.08);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.faq-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Mission */
.mission-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.mission-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    font-size: 14px;
}

.mission-list i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 30, 50, 0.95) 100%);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 16px;
    margin-top: 0;
}

.footer-section p {
    font-size: 13px;
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    font-size: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 191, 255, 0.2);
    transition: all 0.3s ease;
    color: var(--text-primary);
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8d8 100%);
    color: #000;
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* X Logo SVG */
.social-links a[href*="x.com"] i {
    display: none !important;
}

.x-logo {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.footer-bottom a {
    color: var(--primary-color);
}

/* CTA Boxes */
.about-cta, .whitelist-cta {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 35px 0;
    transition: all 0.3s ease;
}

.about-cta:hover, .whitelist-cta:hover {
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.15);
}

.about-cta h2, .whitelist-cta h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 28px;
}

.about-cta p, .whitelist-cta p {
    margin-bottom: 20px;
}

.about-cta .btn, .whitelist-cta .btn {
    margin: 0 10px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.team-member {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.08);
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8d8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #000;
}

.team-member h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-primary);
    margin-top: 0;
}

.team-member p {
    font-size: 13px;
    margin-bottom: 0;
}

/* Success/Error Pages */
.success-section, .error-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.success-section {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(0, 50, 30, 0.1) 100%);
}

.error-section {
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.05) 0%, rgba(50, 0, 0, 0.1) 100%);
}

.success-card, .error-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
}

.success-card:hover, .error-card:hover {
    border-color: var(--primary-color);
}

.success-icon, .error-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.success-icon {
    background: linear-gradient(135deg, #00aa00 0%, #008000 100%);
}

.error-icon {
    background: linear-gradient(135deg, #ff5555 0%, #cc0000 100%);
}

.success-card h1, .error-card h1 {
    font-size: 32px;
    margin-bottom: 15px;
    margin-top: 0;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info h2 {
    margin-top: 0;
}

.info-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.08);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8d8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    color: #000;
}

.info-content h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 16px;
    margin-top: 0;
}

.info-content p {
    font-size: 13px;
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 191, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.1);
}

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

/* Dropdown Styling */
.form-group select {
    color: var(--text-primary) !important;
    background-color: rgba(0, 191, 255, 0.05) !important;
}

.form-group select option {
    background-color: var(--card-bg);
    color: var(--text-primary);
    padding: 10px;
}

.form-group select option:checked {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8d8 100%);
    color: #000;
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }

    .nav-container {
        max-width: 100%;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-link {
        font-size: 11px;
    }

    .hero {
        margin-top: 80px;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-hero {
        margin-top: 80px;
        min-height: 40vh;
    }

    .features-grid, .benefits-grid, .stats-grid, .requirements-grid, 
    .process-steps, .team-grid, .mission-list {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-cta, .whitelist-cta, .content-block {
        padding: 25px;
    }

    .about-cta .btn, .whitelist-cta .btn {
        display: block;
        margin: 8px 0;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 24px;
    }

    .footer-bottom {
        max-width: 100%;
    }
}

/* Connect Cards Grid */
.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.connect-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connect-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 191, 255, 0.15);
}

.connect-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 40px;
    transition: all 0.3s ease;
}

.fivem-icon {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
}

.discord-icon {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: #fff;
}

.teamspeak-icon {
    background: linear-gradient(135deg, #1a8fe3 0%, #0f6fa0 100%);
    color: #fff;
}

.connect-card:hover .connect-icon {
    transform: scale(1.1);
}

.connect-card h3 {
    font-size: 20px;
    margin: 15px 0;
    color: var(--text-primary);
}

.connect-card p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 60px;
}

.connect-card .btn {
    margin: 15px 0;
    width: 100%;
    text-align: center;
}

.server-ip, .server-info {
    font-size: 12px;
    color: var(--primary-color);
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    margin-top: 15px;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

@media (max-width: 768px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }

    .connect-card {
        padding: 25px;
    }

    .connect-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
}

/* Partner Page Social Icons */
.partner-social-links {
    display: flex;
    gap: 20px;
    font-size: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-social-links a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 191, 255, 0.2);
    transition: all 0.3s ease;
    color: var(--text-primary);
    text-decoration: none;
}

.partner-social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8d8 100%);
    color: #000;
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.partner-social-links i {
    font-size: 32px;
}