/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #2a0a0a;
    --bg-secondary: #3d1111;
    --bg-card: rgba(80, 20, 20, 0.85);
    --border-color: rgba(184, 134, 11, 0.4);
    --border-hover: rgba(218, 165, 32, 0.8);
    --text-primary: #f5e6d3;
    --text-secondary: #d4af7a;
    --text-muted: #9d7d4f;
    --accent-gold: #daa520;
    --accent-dark-gold: #b8860b;
    --accent-red: #8b1a1a;
    --accent-burgundy: #5d0a0a;
    --gradient-start: #daa520;
    --gradient-end: #b8860b;
    --shadow-glow: rgba(218, 165, 32, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    background-image: url('1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 10, 10, 0.75);
    backdrop-filter: blur(2px);
    z-index: 0;
}

/* Background Decorations */
.decoration-circle {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(218, 165, 32, 0.2);
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 60px rgba(218, 165, 32, 0.15);
}

.decoration-left {
    top: 10%;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.decoration-right {
    bottom: 10%;
    right: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.diagonal-line {
    position: fixed;
    width: 3px;
    height: 150%;
    background: linear-gradient(180deg, transparent, rgba(218, 165, 32, 0.15), transparent);
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.2);
}

.diagonal-left {
    top: -25%;
    left: 15%;
    transform: rotate(-25deg);
}

.diagonal-right {
    top: -25%;
    right: 15%;
    transform: rotate(25deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* Container Layout */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    gap: 60px;
}

/* Logo Section */
.logo-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeInLeft 1s ease-out;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.logo-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.logo-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(218, 165, 32, 0.3);
    position: relative;
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 40px rgba(218, 165, 32, 0.2);
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(218, 165, 32, 0.15);
    transform: scale(1.2);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Profile Card */
.profile-card {
    background: var(--bg-card);
    backdrop-filter: blur(25px);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    padding: 0;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(218, 165, 32, 0.2);
    animation: fadeInUp 1s ease-out;
    overflow: hidden;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-gradient-border {
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-end) 50%, var(--gradient-start) 100%);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 2px 20px rgba(218, 165, 32, 0.4);
}

/* Card Header */
.card-header {
    padding: 32px 32px 24px;
    text-align: center;
}

.header-text {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Profile Section */
.profile-section {
    padding: 0 32px 32px;
    text-align: center;
}

.avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-dark-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 0 40px rgba(218, 165, 32, 0.5), 0 0 80px rgba(218, 165, 32, 0.3);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.avatar-text {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(218, 165, 32, 0.5), 0 0 80px rgba(218, 165, 32, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(218, 165, 32, 0.7), 0 0 100px rgba(218, 165, 32, 0.4);
        transform: scale(1.02);
    }
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(218, 165, 32, 0.3);
}

.profile-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(218, 165, 32, 0.15);
    border: 1px solid rgba(218, 165, 32, 0.4);
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.status-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

/* Social Links */
.social-links {
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(218, 165, 32, 0.08);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.15), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    border-color: var(--border-hover);
    background: rgba(218, 165, 32, 0.15);
    transform: translateX(-4px);
    box-shadow: 0 4px 25px var(--shadow-glow), 0 0 20px rgba(218, 165, 32, 0.2);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.instagram-icon {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.tiktok-icon {
    background: linear-gradient(135deg, #000000, #000000);
}

.youtube-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.telegram-icon {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.snapchat-icon {
    background: linear-gradient(135deg, #FFFC00, #FFF700);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.website-icon {
    background: linear-gradient(135deg, #daa520, #b8860b);
}

.portfolio-icon {
  background: linear-gradient(135deg, #0059ff, #0059ff);
}

.social-name {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
}
.Facebook
 {
    background: linear-gradient(135deg, #0059ff, #0059ff);
}
.social-edit {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(218, 165, 32, 0.15);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-edit svg {
    width: 18px;
    height: 18px;
}

.social-link:hover .social-edit {
    background: rgba(218, 165, 32, 0.3);
    color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

/* Card Footer */
.card-footer {
    padding: 24px 32px 32px;
    text-align: center;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.footer-title {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-icon svg {
    width: 20px;
    height: 20px;
}

.footer-icon:hover {
    background: rgba(218, 165, 32, 0.2);
    border-color: var(--border-hover);
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.copyright {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        gap: 40px;
    }

    .logo-section {
        align-items: center;
        text-align: center;
    }

    .logo-circle {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 20px 16px;
    }

    .profile-card {
        max-width: 100%;
    }

    .card-header,
    .profile-section,
    .social-links,
    .card-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-subtitle {
        font-size: 11px;
    }

    .logo-circle {
        width: 120px;
        height: 120px;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }

    .avatar-text {
        font-size: 28px;
    }

    .profile-name {
        font-size: 24px;
    }

    .decoration-circle {
        width: 250px;
        height: 250px;
    }
}

/* Accessibility */
.social-link:focus,
.footer-icon:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.4);
}

/* Security - Prevent text selection on sensitive areas */
.avatar-text,
.logo-text {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .decoration-circle,
    .diagonal-line {
        display: none;
    }
}
