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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0f1a 0%, #0f1420 100%);
    color: #e0e4f0;
    line-height: 1.6;
    padding: 2rem 1rem;
    cursor: none;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: #e31b23;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.2s ease;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid #e31b23;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s ease, left 0.1s ease, top 0.1s ease;
}

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

::-webkit-scrollbar-track {
    background: #0a0f1a;
}

::-webkit-scrollbar-thumb {
    background: #e31b23;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff2a35;
}

/* Profile Image */
.profile-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
}

.image-wrapper img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e31b23;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.image-wrapper img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 50%, rgba(227,27,35,0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1.5rem;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-badge span {
    display: inline-block;
    background: linear-gradient(135deg, #e31b23, #ff4757);
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

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

.hero-name {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0 0.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, #e31b23, #ff6b7c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-title {
    font-size: 1.2rem;
    color: #a0a8c0;
}

.typed-container {
    margin: 1rem 0;
    min-height: 50px;
}

.typed-text {
    font-size: 1.3rem;
    color: #e31b23;
    font-weight: 600;
    border-right: 2px solid #e31b23;
    display: inline-block;
    padding-right: 8px;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #e31b23; }
}

.hero-quote {
    font-style: italic;
    color: #c0c8e0;
    padding: 0.8rem 1rem;
    background: rgba(227,27,35,0.1);
    border-radius: 50px;
    display: inline-block;
}

.hero-quote i {
    color: #e31b23;
    margin: 0 5px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.05);
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-btn:hover {
    background: #e31b23;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227,27,35,0.3);
}

.contact-btn.whatsapp:hover {
    background: #25D366;
}

/* Cards */
.card {
    background: rgba(15, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 2rem;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(227,27,35,0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-left: 4px solid #e31b23;
    padding-left: 1rem;
    transition: transform 0.3s ease;
}

.card:hover h2 {
    transform: translateX(5px);
}

.card h2 i {
    color: #e31b23;
    margin-right: 12px;
    animation: iconPulse 2s infinite;
}

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

.highlight {
    background: linear-gradient(135deg, rgba(227,27,35,0.15), rgba(0,0,0,0.3));
    border-left: 4px solid #e31b23;
}

.election-info p {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.election-info i {
    color: #e31b23;
    width: 28px;
    font-size: 1.2rem;
}

/* Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.info-item {
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    transition: transform 0.3s ease, padding-left 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    padding-left: 10px;
    border-bottom-color: rgba(227,27,35,0.5);
}

.info-item strong {
    color: #e31b23;
    min-width: 130px;
    display: inline-block;
}

.info-item span {
    color: #ddd;
}

/* Timeline */
.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding: 0.8rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(227,27,35,0.1);
    transform: translateX(8px);
}

.timeline-year {
    font-weight: 800;
    color: #e31b23;
    min-width: 110px;
    font-size: 1.1rem;
    position: relative;
}

.timeline-year::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #e31b23;
    border-radius: 50%;
}

.timeline-desc {
    flex: 1;
}

/* Political Timeline */
.political-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.political-timeline div {
    padding: 0.7rem 0.7rem 0.7rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.political-timeline div:hover {
    background: rgba(227,27,35,0.1);
    transform: translateX(8px);
}

.year {
    display: inline-block;
    font-weight: 800;
    color: #e31b23;
    min-width: 85px;
    font-family: monospace;
    font-size: 0.95rem;
}

/* Ideology */
.ideology-list {
    list-style: none;
}

.ideology-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.02);
}

.ideology-list li:hover {
    background: rgba(227,27,35,0.1);
    transform: scale(1.02);
}

.ideology-list li i {
    color: #e31b23;
    width: 32px;
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Footer */
footer {
    text-align: center;
    padding: 2.5rem 1rem;
    background: rgba(10, 15, 26, 0.8);
    border-radius: 40px;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #ddd;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #e31b23;
    color: white;
    transform: translateY(-5px) rotate(360deg);
}

.footer-name {
    color: #e31b23;
    font-weight: 600;
}

.footer-tagline {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem;
        cursor: auto;
    }
    .cursor, .cursor-follower {
        display: none;
    }
    .hero-name {
        font-size: 2rem;
    }
    .hero {
        padding: 1.5rem;
    }
    .image-wrapper img {
        width: 100px;
        height: 100px;
    }
    .card {
        padding: 1.2rem;
    }
    .card h2 {
        font-size: 1.3rem;
    }
    .contact-info {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-btn {
        justify-content: center;
    }
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    .timeline-year::before {
        display: none;
    }
    .info-item strong {
        min-width: 100px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .political-timeline div {
        font-size: 0.9rem;
    }
}