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

/* Body styles */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: url('abstractbg.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    cursor: url('cursor.png'), auto; /* Barbie-themed mouse pointer */
}

/* Container styles */
.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    width: 100%;
    
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Header styles */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: #ff69b4; /* Barbie pink */
}

.balance {
    margin-bottom: 10px;
}

.balance h2 {
    font-size: 1.5rem;
    color: #ff1493; /* Deep pink */
}

/* Main content styles */
main {
    display: flex;
    flex-wrap: wrap;
}

/* Inventory styles */
.inventory {
    flex: 1 1 100%;
    margin-bottom: 20px;
}

.inventory h2 {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: #ff69b4; /* Barbie pink */
    margin-bottom: 10px;
}

#inventory-list {
    list-style-type: none;
    padding: 0;
}

#inventory-list li {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: #ff1493; /* Deep pink */
}

/* Account styles */
.account {
    flex: 1 1 100%;
    margin-bottom: 20px;
}

.account h2 {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: #ff69b4; /* Barbie pink */
    margin-bottom: 10px;
}

.account p {
    font-size: 1.2rem;
    color: #ff1493; /* Deep pink */
    margin-top: 5px;
}

/* Button styles */
button {
    background-color: #ff69b4; /* Barbie pink */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #ff1493; /* Deep pink */
    transform: scale(1.05);
}

button:active {
    transform: scale(1.1);
}

/* Actions styles */
.actions {
    flex: 1 1 100%;
    display: flex;
    justify-content: space-between;
}

.actions button {
    background-color: #ff69b4; /* Barbie pink */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
}

.actions button:hover {
    background-color: #ff1493; /* Deep pink */
    transform: scale(1.05);
}

.actions button:active {
    transform: scale(1.1);
}
