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

/* Variables for Theming */
:root {
    /* Masculine, mature color palette */
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #8a8a8a;
    --background-dark: #0f0f23;
    --background-card: #1e1e3f;
    --border-color: #2d2d4a;
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-light: 0 4px 16px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-accent: linear-gradient(135deg, #e94560 0%, #f27121 100%);
    --gradient-card: linear-gradient(145deg, #1e1e3f 0%, #2d2d4a 100%);
    
    /* Projects page styles */
    --projects-button-bg: #e94560;
    --projects-button-hover: #f27121;
}

/* Body and Global Settings */
body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--background-dark);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 52, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(22, 33, 62, 0.1) 0%, transparent 50%);
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Header */
header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header:hover {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    gap: 2rem;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    animation: fadeInDown 1s ease;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    transition: all 0.3s ease-in-out;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

header nav ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: inline-block;
    background: var(--background-card);
    font-size: 0.9rem;
    white-space: nowrap;
}

header nav ul li a:hover {
    color: var(--highlight-color);
    border-color: var(--highlight-color);
    background: var(--background-dark);
    transform: translateY(-1px);
}

header nav ul li a.active {
    color: var(--highlight-color);
    border-color: var(--highlight-color);
    background: var(--background-dark);
}

/* Hero Section */
section#home {
    background: var(--gradient-card);
    margin: 2rem auto;
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: var(--shadow-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    animation: fadeIn 1.5s ease;
    border: 1px solid var(--border-color);
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

section#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

/* General Sections */
section {
    padding: 4rem 2rem;
}

section:not(#home) {
    background: var(--gradient-card);
    margin: 2rem auto;
    border-radius: 20px;
    padding: 3rem;
    max-width: 1000px;
    box-shadow: var(--shadow-dark);
    animation: fadeIn 1.5s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

section:not(#home)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

/* Skills Section */
#skills-section {
    text-align: center;
}

#skills-section h2 {
    margin-bottom: 1rem;
    font-size: 2.8rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.02em;
}

#skills-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.skills-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
}

.skill-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.skill-category {
    background: var(--background-card);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: var(--highlight-color);
}

.skill-category h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.6rem;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    font-weight: 600;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 1.5px;
}

section a {
    text-decoration: none;
    color: var(--highlight-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

section a:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

section a:hover::after {
    width: 100%;
}

/* Experience Section */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-item {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dark);
    border-color: var(--highlight-color);
}

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

.experience-item h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.experience-item .location {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.experience-item ul {
    list-style: none;
    padding-left: 0.5rem;
    margin-bottom: 1rem;
}

.experience-item ul li {
    margin-bottom: 0.5rem;
}

.experience-item a {
    color: var(--highlight-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.experience-item a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(233, 69, 96, 0.5);
}

/* Footer */
footer {
    background: var(--gradient-primary);
    color: var(--text-primary);
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    font-size: 1rem;
    animation: fadeIn 2s ease;
    border-top: 1px solid var(--border-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

footer a {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

footer a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

footer a:hover::after {
    width: 100%;
}

.github-link {
    text-decoration: none;
}

.github-icon {
    width: 32px;
    /* Set the icon size */
    height: 32px;
    border-radius: 50%;
    /* Makes the corners fully rounded */
    transition: transform 0.3s ease;
    /* Smooth hover animation */
}

.github-icon:hover {
    transform: scale(1.2);
    /* Slightly enlarge the icon on hover */
}

.linkedin-link {
    text-decoration: none;
}

.linkedin-icon {
    width: 32px;
    /* Set the icon size */
    height: 32px;
    border-radius: 50%;
    /* Makes the corners fully rounded */
    transition: transform 0.3s ease;
    /* Smooth hover animation */
}

.linkedin-icon:hover {
    transform: scale(1.2);
    /* Slightly enlarge the icon on hover */
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
    margin: 0;
}

.skill-item {
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
}

.skill-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.skill-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dark);
    border-color: var(--highlight-color);
}

.skill-item:hover::before {
    transform: scaleX(1);
}

.skill-item:hover::after {
    opacity: 1;
}

/* Custom Cursor */
.custom-cursor {
    width: 10px;
    height: 10px;
    border: 2px solid var(--highlight-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.custom-cursor.cursor-hover {
    width: 40px;
    height: 40px;
    background: rgba(233, 69, 96, 0.1);
}

.custom-cursor-follower.cursor-hover {
    width: 60px;
    height: 60px;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(233, 69, 96, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(233, 69, 96, 0.6);
    }
}

/* Projects page styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--highlight-color);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.project-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

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

.project-header h3 a:hover {
    color: var(--highlight-color);
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.project-icon:hover {
    transform: scale(1.2);
}

.project-content {
    color: var(--text-secondary);
}

.project-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

/* Additional Styling for Text Hierarchy */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1:not(header h1) {
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
}

h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--highlight-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    header nav ul {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    header nav ul li a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    section {
        padding: 2rem 1rem;
    }
    
    h1:not(header h1) {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

/* Profile section styling */
.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: var(--shadow-dark);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.3);
}

.profile-content {
    flex: 1;
    min-width: 0;
}

.profile-section a {
    text-decoration: none;
    display: inline-block;
}

.profile-section a:hover .profile-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.3);
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    header nav ul {
        gap: 6px;
    }
    
    header nav ul li a {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-photo {
        width: 100px;
        height: 100px;
    }
}

/* Weather Widget Styles */
#weather {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
}

#weather h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}

#weather-widget {
    max-width: 400px;
    margin: 0 auto;
}

#weather-loading {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    padding: 2rem;
}

#weather-error {
    text-align: center;
    color: var(--highlight-color);
    padding: 2rem;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.weather-main {
    text-align: center;
    padding: 1.5rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

#weather-temp {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

#weather-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-transform: capitalize;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.weather-location {
    text-align: center;
    padding: 1rem;
    background: rgba(15, 52, 96, 0.3);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

#weather-location {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.weather-extra {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(15, 52, 96, 0.3);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

#weather-humidity,
#weather-wind {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Responsive Weather Widget */
@media (max-width: 768px) {
    #weather {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    #weather h2 {
        font-size: 1.5rem;
    }
    
    #weather-temp {
        font-size: 2.5rem;
    }
    
    .weather-details {
        grid-template-columns: 1fr;
    }
    
    .weather-extra {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .skills-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .skill-item {
        font-size: 0.85rem;
        padding: 1rem 0.5rem;
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .skills-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .skill-item {
        font-size: 0.8rem;
        padding: 0.8rem 0.4rem;
        min-height: 70px;
    }
}

/* NFL Schedule Widget Styles */
#nfl-schedule {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
}

#nfl-schedule h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}

#nfl-widget {
    max-width: 900px;
    margin: 0 auto;
}

#nfl-loading {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    padding: 2rem;
}

#nfl-error {
    text-align: center;
    color: var(--highlight-color);
    padding: 2rem;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

#nfl-games-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.nfl-game-card {
    background: var(--gradient-primary);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nfl-game-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
    border-color: var(--highlight-color);
}

.nfl-game-card.live {
    border-color: var(--highlight-color);
    animation: glow 2s ease-in-out infinite;
}

.nfl-game-header {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.nfl-game-time {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
}

.nfl-game-status {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    background: var(--background-card);
    text-align: center;
}

.nfl-game-status.live {
    color: var(--highlight-color);
    background: rgba(233, 69, 96, 0.2);
    animation: pulse 1.5s ease-in-out infinite;
}

.nfl-teams {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nfl-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.nfl-team:hover {
    background: rgba(15, 52, 96, 0.3);
}

.nfl-team-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.nfl-team-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nfl-team.winner .nfl-team-name,
.nfl-team.winner .nfl-team-score {
    color: var(--highlight-color);
}

/* Contact Form Styles */
.contact-form-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-size: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.form-message.error {
    display: block;
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.3);
    color: var(--highlight-color);
}

/* Responsive NFL Widget */
@media (max-width: 1200px) {
    #nfl-games-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    #nfl-games-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #nfl-schedule {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    #nfl-schedule h2 {
        font-size: 1.5rem;
    }
    
    .nfl-game-card {
        padding: 0.8rem;
    }
}

@media (max-width: 600px) {
    #nfl-games-list {
        grid-template-columns: 1fr;
    }
    
    .nfl-team-name {
        font-size: 1rem;
    }
    
    .nfl-team-score {
        font-size: 1.2rem;
    }
}